/* Parag Patel — Bollywood cinematic, light tone */
:root {
  --ivory: #faf6ee;
  --cream: #f3ead9;
  --ink: #2b1a12;
  --ink-soft: #5c4436;
  --gold: #c9a227;
  --gold-deep: #a37f1a;
  --rose: #e8b4a0;
  --line: rgba(43, 26, 18, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", -apple-system, "Segoe UI", sans-serif;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.serif { font-family: "Fraunces", Georgia, serif; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  background: rgba(250, 246, 238, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
}

.brand em { color: var(--gold-deep); font-style: normal; }

.nav { display: flex; gap: 28px; }

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.nav a:hover { color: var(--ink); }
.nav a.active { color: var(--ink); border-color: var(--gold); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--cream);
}

.hero img.still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(250, 246, 238, 0.97) 0%,
    rgba(250, 246, 238, 0.55) 30%,
    rgba(250, 246, 238, 0.05) 62%,
    rgba(250, 246, 238, 0.12) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 6vw 9vh;
}

.kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  max-width: 14ch;
}

.tagline {
  margin-top: 20px;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--ink-soft);
  font-weight: 500;
}

.tagline b { color: var(--gold-deep); font-weight: 700; }

.hero-cta { margin-top: 34px; display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.btn-solid {
  background: var(--ink);
  color: var(--ivory);
  box-shadow: 0 10px 30px rgba(43, 26, 18, 0.25);
}

.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(43, 26, 18, 0.3); }

.btn-ghost {
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover { background: var(--ink); color: var(--ivory); transform: translateY(-2px); }

/* ---------- sections ---------- */
.section { padding: 12vh 6vw; max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 22px;
}

.section h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 26px;
  max-width: 20ch;
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 62ch;
}

.lede + .lede { margin-top: 1.2em; }

/* feature band */
.band {
  background: var(--ink);
  color: var(--ivory);
  border-radius: 26px;
  padding: clamp(34px, 6vw, 70px);
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.35), transparent 70%);
}

.band .section-label { color: var(--gold); }

.band h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
}

.band p { color: rgba(250, 246, 238, 0.82); max-width: 58ch; position: relative; }

/* film strip divider */
.strip {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 34px 0 0;
}

.strip span {
  width: 44px; height: 6px;
  border-radius: 3px;
  background: var(--line);
}

.strip span.lit { background: var(--gold); }

/* page turn nav */
.page-turn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 8vh 6vw 10vh;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.page-turn .dir {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.page-turn a.big {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.page-turn a.big:hover { color: var(--gold-deep); }

/* connect */
.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}

.connect-grid img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(43, 26, 18, 0.22);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.mail-link {
  display: inline-block;
  margin: 26px 0 8px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}

.mail-link:hover { color: var(--gold-deep); }

.studio-line { margin-top: 26px; font-size: 1.05rem; color: var(--ink-soft); }

.studio-line a { color: var(--gold-deep); font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--gold); }

.social { margin-top: 30px; display: flex; gap: 14px; }

.social a {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.25s;
}

.social a:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

/* footer */
footer {
  border-top: 1px solid var(--line);
  padding: 40px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

footer .fbrand { font-family: "Fraunces", Georgia, serif; font-size: 1.05rem; color: var(--ink); }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 760px) {
  .connect-grid { grid-template-columns: 1fr; }
  .nav { gap: 16px; }
  .nav a { font-size: 0.7rem; letter-spacing: 0.14em; }
  .hero { min-height: 88vh; }
}
