/* Critical above-the-fold CSS — Prabhaav Media */

:root {
  --color-white: #ffffff;
  --color-off-white: #fafafa;
  --color-cream: #f8f6f3;
  --color-gold: #c38b2f;
  --color-gold-dark: #a67526;
  --color-gold-muted: rgba(195, 139, 47, 0.12);
  --color-gold-subtle: rgba(195, 139, 47, 0.06);
  --color-text-primary: #1a1a1a;
  --color-text-secondary: #4a4a4a;
  --color-text-inverse: #ffffff;
  --color-border: #e8e4de;
  --color-border-light: #f0ece6;
  --color-shadow: rgba(26, 26, 26, 0.08);
  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-brand: "Manrope", system-ui, sans-serif;
  --font-size-sm: 0.9375rem;
  --font-size-base: 1.0625rem;
  --font-size-md: 1.25rem;
  --font-size-3xl: clamp(2.25rem, 1.75rem + 2vw, 3.25rem);
  --font-size-4xl: clamp(2.75rem, 2rem + 3vw, 4.5rem);
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --line-height-tight: 1.15;
  --line-height-relaxed: 1.75;
  --letter-spacing-wider: 0.08em;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --container-padding: clamp(1rem, 4vw, 2rem);
  --container-xl: 1200px;
  --navbar-height: 4.5rem;
  --navbar-height-scrolled: 4rem;
  --border-width: 1px;
  --radius-md: 0.5rem;
  --shadow-sm: 0 1px 2px var(--color-shadow);
  --transition-base: 250ms cubic-bezier(0.22, 1, 0.36, 1);
  --z-navbar: 300;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
img, picture { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }

.skip-link {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 301;
  padding: var(--space-3) var(--space-5);
  background: var(--color-gold);
  color: var(--color-text-inverse);
  font-family: var(--font-display);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  border-radius: var(--radius-md);
  transform: translateY(-200%);
  transition: transform var(--transition-base);
}
.skip-link:focus { transform: translateY(0); }

.page-wrapper { display: flex; flex-direction: column; min-height: 100vh; min-height: 100dvh; }
.page-main { flex: 1; padding-top: var(--navbar-height); }
.container { width: 100%; max-width: var(--container-xl); margin-inline: auto; padding-inline: var(--container-padding); }

[data-component="navbar"] { position: relative; z-index: var(--z-navbar); }

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-navbar);
  height: var(--navbar-height);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border-width) solid rgba(232, 228, 222, 0.6);
}
.navbar__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-4);
}
.navbar__brand { display: flex; align-items: center; gap: var(--space-3); }
.navbar__logo-img { height: 2.25rem; width: auto; object-fit: contain; }
.navbar__brand-name { font-family: var(--font-brand); font-size: var(--font-size-base); font-weight: 600; white-space: nowrap; }
.navbar__nav { display: none; margin-left: auto; }
.navbar__toggle { display: flex; align-items: center; justify-content: center; margin-left: auto; width: 2.5rem; height: 2.5rem; }
.navbar__toggle-icon { width: 1.5rem; height: 1.5rem; }

/* Hide mobile menu before main.css loads */
.navbar__mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1;
  padding-top: var(--navbar-height);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.navbar__mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.navbar svg {
  width: 1.5rem;
  height: 1.5rem;
  max-width: 1.5rem;
  max-height: 1.5rem;
  flex-shrink: 0;
}

@media (max-width: 479px) {
  .navbar__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .navbar__brand {
    display: contents;
  }

  .navbar__brand picture {
    grid-column: 1;
    justify-self: start;
  }

  .navbar__brand-name {
    grid-column: 2;
    justify-self: center;
    font-size: var(--font-size-sm);
  }

  .navbar__toggle {
    grid-column: 3;
    justify-self: end;
    margin-left: 0;
  }
}

@media (min-width: 1024px) {
  .navbar__nav { display: flex; align-items: center; gap: 2.75rem; }
  .navbar__toggle { display: none; }
  .navbar__mobile-menu { display: none; }
}

.hero {
  position: relative;
  padding-block: clamp(1rem, 2vw, 1.5rem) clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--color-white);
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; }
.hero__title { font-family: var(--font-display); font-size: var(--font-size-3xl); font-weight: var(--font-weight-bold); line-height: var(--line-height-tight); margin-bottom: var(--space-6); }
.hero__title-accent { color: var(--color-gold-dark); }
.hero__subtitle { font-size: var(--font-size-md); color: var(--color-text-secondary); line-height: var(--line-height-relaxed); max-width: 36rem; }

.page-hero {
  position: relative;
  padding-block: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 2.5vw, 1.75rem);
  text-align: center;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--color-white);
  z-index: 0;
}
.page-hero__inner { position: relative; z-index: 1; max-width: 40rem; margin-inline: auto; }
.page-hero__eyebrow {
  font-family: var(--font-display);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}
.page-hero__title { font-family: var(--font-display); font-size: var(--font-size-4xl); font-weight: var(--font-weight-bold); margin-bottom: var(--space-4); }
.page-hero__subtitle { font-size: var(--font-size-md); color: var(--color-text-secondary); line-height: var(--line-height-relaxed); }
