*{box-sizing:border-box;margin:0;padding:0}
:root{
  --text:#fff;
  --muted:rgba(255,255,255,.82);
  --glass:rgba(20,15,8,.28);
  --border:rgba(255,255,255,.25);
  --accent:#ff8a00;
  --dark:#11100e;
}
html{scroll-behavior:smooth}
body{
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif;
  color:var(--text); background:#17130e;
}
.page{min-height:100vh}
.topbar{
  position:fixed; z-index:20; top:0; left:0; right:0;
  height:74px; display:flex; align-items:center; justify-content:space-between;
  padding:0 5vw; background:linear-gradient(to bottom,rgba(0,0,0,.45),transparent);
  backdrop-filter:blur(7px);
}
.brand{
  width:42px;height:42px;border:1px solid var(--border);border-radius:50%;
  display:grid;place-items:center;color:#fff;text-decoration:none;font-weight:800;
  background:rgba(0,0,0,.2)
}
nav{display:flex;gap:32px}
nav a{color:#fff;text-decoration:none;font-size:.9rem;font-weight:600;letter-spacing:.05em}
nav a:hover{color:#ffd18b}
.theme-toggle{
  border:1px solid var(--border);background:rgba(0,0,0,.22);color:#fff;
  border-radius:999px;padding:9px 13px;cursor:pointer;font-size:.8rem
}
.hero{
  position:relative;min-height:100vh;display:flex;align-items:center;
  background-image:url("NitinNarayan_Phone.jpg");
  background-size:cover;background-position:center center;
  overflow:hidden;
}
.hero-overlay{
  position:absolute;inset:0;
  background:
    linear-gradient(90deg,rgba(0,0,0,.67) 0%,rgba(0,0,0,.25) 48%,rgba(0,0,0,.05) 100%),
    linear-gradient(0deg,rgba(0,0,0,.45),transparent 45%);
}
.hero-content{
  position:relative;z-index:2;width:min(760px,88vw);margin-left:8vw;padding-top:40px;
}
.eyebrow{
  display:inline-block;font-size:.72rem;letter-spacing:.25em;font-weight:800;
  margin-bottom:16px;color:#ffd18b
}
h1{font-size:clamp(4rem,9vw,8.8rem);line-height:.88;letter-spacing:-.065em;margin-bottom:24px}
.tagline{font-size:clamp(1rem,2vw,1.35rem);color:var(--muted);letter-spacing:.06em}
.actions{display:flex;gap:12px;margin-top:34px}
.btn{
  display:inline-block;text-decoration:none;color:#fff;border-radius:999px;
  padding:13px 23px;font-weight:700;font-size:.9rem
}
.primary{background:var(--accent);box-shadow:0 10px 35px rgba(255,138,0,.25)}
.secondary{border:1px solid rgba(255,255,255,.55);background:rgba(255,255,255,.08);backdrop-filter:blur(8px)}
.scroll-hint{
  position:absolute;z-index:2;bottom:28px;left:50%;transform:translateX(-50%);
  font-size:.65rem;letter-spacing:.25em;color:rgba(255,255,255,.75)
}
.content-section,.connect-section{
  min-height:72vh;display:grid;place-items:center;padding:100px 7vw;
  background:#17130e;
}
.content-card,.connect-card{
  width:min(850px,100%);padding:60px;border:1px solid rgba(255,255,255,.1);
  background:linear-gradient(145deg,#262019,#17130e);border-radius:28px;
  box-shadow:0 25px 80px rgba(0,0,0,.28)
}
h2{font-size:clamp(2rem,4.5vw,4rem);line-height:1.05;letter-spacing:-.04em;margin-bottom:20px}
.content-card p,.connect-card p{max-width:680px;color:#cfc7bc;font-size:1.08rem;line-height:1.8}
.socials{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}
.social-icon{
  width:52px;height:52px;border-radius:50%;
  display:grid;place-items:center;
  color:#fff;text-decoration:none;
  border:1px solid rgba(255,255,255,.24);
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(8px);
  transition:transform .2s ease,background .2s ease,border-color .2s ease;
}
.social-icon span{font-weight:800;line-height:1}
.social-icon.facebook span{font-family:Arial,sans-serif;font-size:1.65rem}
.social-icon.instagram span{font-size:1.65rem}
.social-icon.x span{font-size:1.45rem}
.social-icon.youtube span{font-size:1.05rem}
.social-icon.threads span{font-size:1.25rem}
.social-icon:hover{
  transform:translateY(-3px) scale(1.04);
  border-color:var(--accent);
  background:rgba(255,255,255,.16);
}
footer{text-align:center;padding:30px;color:#91897f;background:#0f0d0b;font-size:.8rem}
.light{
  --text:#20170d;--muted:rgba(32,23,13,.78);--glass:rgba(255,255,255,.28);
  --border:rgba(32,23,13,.25)
}
.light .hero-overlay{background:linear-gradient(90deg,rgba(255,247,230,.58),rgba(255,255,255,.05))}
.light .hero-content{color:#20170d}
.light .hero-content .eyebrow{color:#9a4e00}
.light nav a,.light .brand,.light .theme-toggle{color:#20170d}
.light .secondary{color:#20170d;border-color:rgba(32,23,13,.35)}
.light .content-section,.light .connect-section{background:#f7f1e8}
.light .content-card,.light .connect-card{background:#fffaf2;border-color:#eadfce}
.light .content-card p,.light .connect-card p{color:#62584d}
.light .social-icon{color:#20170d;border-color:#d7c9b5;background:rgba(255,255,255,.72)}
.light footer{background:#e9dfd0;color:#655a4e}
@media(max-width:700px){
  .topbar{padding:0 20px}
  nav{gap:14px}
  nav a{font-size:.72rem}
  .theme-toggle{display:none}
  .hero{background-position:54% center}
  .hero-content{margin-left:7vw;padding-top:55px}
  h1{font-size:clamp(3.5rem,18vw,6rem)}
  .content-card,.connect-card{padding:34px 26px}
}

.contact-details{
  display:grid;
  gap:14px;
  margin-top:30px;
  max-width:720px;
}
.contact-item{
  display:flex;
  flex-direction:column;
  gap:5px;
  color:#fff;
  text-decoration:none;
  padding:17px 19px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  background:rgba(255,255,255,.035);
  transition:transform .2s ease,border-color .2s ease,background .2s ease;
}
.contact-item:hover{
  transform:translateY(-2px);
  border-color:var(--accent);
  background:rgba(255,255,255,.07);
}
.contact-label{
  font-size:.68rem;
  letter-spacing:.18em;
  font-weight:800;
  color:#ffd18b;
}
.light .contact-item{
  color:#20170d;
  border-color:#ded1bf;
  background:#fffdf8;
}

/* Gallery */
.gallery-page{min-height:100vh;background:#17130e}
.gallery-main{padding:120px 6vw 80px;max-width:1400px;margin:0 auto}
.gallery-heading{max-width:850px;margin-bottom:42px}
.gallery-heading h1{font-size:clamp(3rem,7vw,6rem);line-height:.95;margin:0 0 18px}
.gallery-heading p{max-width:720px;color:#cfc7bc;font-size:1.05rem;line-height:1.8}
.gallery-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.gallery-card{position:relative;overflow:hidden;min-height:270px;border-radius:20px;border:1px solid rgba(255,255,255,.12);background:#241e17;cursor:pointer}
.gallery-card.featured{grid-column:span 2;grid-row:span 2;min-height:560px}
.gallery-card img{width:100%;height:100%;min-height:270px;display:block;object-fit:cover;transition:transform .5s ease,filter .5s ease}
.gallery-card:hover img{transform:scale(1.045);filter:saturate(1.08)}
.gallery-caption{position:absolute;left:0;right:0;bottom:0;padding:46px 20px 20px;color:#fff;background:linear-gradient(transparent,rgba(0,0,0,.82))}
.gallery-caption strong{display:block;font-size:1rem}.gallery-caption span{display:block;margin-top:5px;font-size:.78rem;color:rgba(255,255,255,.75)}
.gallery-placeholder{display:grid;place-items:center;min-height:270px;padding:25px;text-align:center;background:radial-gradient(circle at 30% 20%,rgba(255,138,0,.16),transparent 35%),linear-gradient(145deg,#2a2118,#17130e)}
.gallery-placeholder .plus{width:52px;height:52px;border-radius:50%;display:grid;place-items:center;border:1px dashed rgba(255,255,255,.32);font-size:1.6rem;color:#ffd18b;margin:0 auto 12px}
.gallery-placeholder strong{font-size:.95rem}.gallery-placeholder span{display:block;margin-top:6px;color:#9f9588;font-size:.76rem;line-height:1.5}
.gallery-note{margin-top:26px;color:#9f9588;font-size:.82rem;line-height:1.6}
.light .gallery-page{background:#f7f1e8}.light .gallery-heading p{color:#62584d}.light .gallery-card{border-color:#ded1bf;background:#fffaf2}.light .gallery-placeholder{background:linear-gradient(145deg,#fffaf2,#eee4d6)}.light .gallery-placeholder span,.light .gallery-note{color:#776b5d}
.lightbox{position:fixed;z-index:100;inset:0;display:none;place-items:center;padding:30px;background:rgba(0,0,0,.9);backdrop-filter:blur(8px)}
.lightbox.open{display:grid}.lightbox img{max-width:min(1200px,94vw);max-height:86vh;object-fit:contain;border-radius:12px;box-shadow:0 30px 100px rgba(0,0,0,.55)}
.lightbox-close{position:absolute;top:22px;right:25px;width:46px;height:46px;border-radius:50%;border:1px solid rgba(255,255,255,.3);background:rgba(0,0,0,.3);color:#fff;font-size:1.5rem;cursor:pointer}
@media(max-width:1000px){.gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.gallery-card.featured{grid-column:span 2}}
@media(max-width:600px){.gallery-main{padding:105px 20px 60px}.gallery-grid{grid-template-columns:1fr}.gallery-card,.gallery-card.featured{grid-column:span 1;grid-row:span 1;min-height:300px}.gallery-card.featured img{min-height:300px}}
