:root {
  --black: #090806;
  --black-2: #11100d;
  --wine: #5b171d;
  --wine-deep: #2a0c0f;
  --gold: #d9ae5f;
  --gold-soft: #f2d596;
  --cream: #f3ede2;
  --muted: #b8afa0;
  --line: rgba(217,174,95,.20);
  --shadow: 0 24px 70px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(900px, calc(100% - 40px)); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  transition: background .3s ease, border .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: rgba(9,8,6,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217,174,95,.10);
}
.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  text-decoration: none;
  color: rgba(243,237,226,.85);
  font-size: .92rem;
  letter-spacing: .02em;
}
.nav a:hover { color: var(--gold-soft); }
.nav-cta {
  border: 1px solid rgba(217,174,95,.55);
  padding: 10px 18px;
  border-radius: 999px;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: url("assets/hero-maharaj.webp") center/cover no-repeat;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,6,5,.84) 0%, rgba(7,6,5,.50) 44%, rgba(7,6,5,.20) 70%, rgba(7,6,5,.40) 100%),
    linear-gradient(180deg, rgba(0,0,0,.14), rgba(0,0,0,.45));
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 70px;
}
.eyebrow, .kicker {
  color: var(--gold);
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero h1, .section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -.02em;
}
.hero h1 {
  max-width: 820px;
  font-size: clamp(3.8rem, 7vw, 7.2rem);
  line-height: .92;
  margin: 18px 0 24px;
}
.hero-lead {
  max-width: 650px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: rgba(243,237,226,.86);
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: .92rem;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, #b88634, #e3bd70);
  color: #120e08;
}
.btn-ghost {
  border: 1px solid rgba(243,237,226,.35);
  background: rgba(15,12,9,.28);
  backdrop-filter: blur(8px);
}
.scroll-hint {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  text-decoration: none;
  font-size: 1.5rem;
  opacity: .85;
}

.section {
  padding: 110px 0;
  position: relative;
}
.section h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1;
  margin: 12px 0 28px;
}
.lead {
  font-size: 1.24rem;
  color: rgba(243,237,226,.80);
}
.lead.small { font-size: 1.12rem; }

.intro {
  background:
    radial-gradient(circle at 80% 15%, rgba(91,23,29,.28), transparent 34%),
    linear-gradient(180deg, var(--black), #0d0b09);
}
.method-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.method-grid article {
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
}
.method-grid span, .card-number {
  color: var(--gold);
  font-size: .74rem;
  letter-spacing: .14em;
}
.method-grid h3, .card h3, .location-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  margin: 8px 0 10px;
}
.method-grid p, .card p, .location-card p, .travel-agenda p, .professional-copy p, .closing p {
  color: var(--muted);
}

.services {
  background: #0d0b09;
}
.section-heading { max-width: 820px; margin-bottom: 48px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.card {
  min-height: 260px;
  padding: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(91,23,29,.08), transparent);
  border-radius: 22px;
}
.card h3 { font-size: 2.25rem; }
.subtle-note {
  margin-top: 18px;
  padding: 24px 26px;
  border-left: 2px solid var(--gold);
  background: rgba(217,174,95,.04);
  color: var(--muted);
}

.professional {
  background:
    radial-gradient(circle at 12% 30%, rgba(91,23,29,.20), transparent 34%),
    #0a0907;
}
.professional-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.portrait-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.portrait-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}
.professional-copy p + p { margin-top: 20px; }

.locations { background: #0c0b09; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.location-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #11100d;
}
.location-card img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  filter: saturate(.82) contrast(1.03);
}
.location-copy { padding: 26px 28px 30px; }
.location-tag {
  color: var(--gold) !important;
  letter-spacing: .18em;
  font-size: .72rem;
  margin: 0;
}
.travel-agenda {
  text-align: center;
  margin-top: 26px;
  padding: 38px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(91,23,29,.10), transparent);
}
.travel-agenda .cities {
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 8px 0;
}

.closing {
  background:
    linear-gradient(120deg, rgba(42,12,15,.95), rgba(15,12,9,.97)),
    #0c0a08;
}
.closing-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: end;
}
.closing-action { padding-bottom: 12px; }

.footer {
  padding: 54px 0 28px;
  background: #070605;
  border-top: 1px solid rgba(217,174,95,.10);
}
.footer-grid {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 28px;
  align-items: center;
}
.footer img {
  width: 82px;
  border-radius: 50%;
}
.footer p { margin: 3px 0; color: var(--muted); }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: var(--gold-soft); text-decoration: none; }
.copyright {
  text-align: center;
  color: rgba(184,175,160,.55) !important;
  font-size: .78rem;
  margin-top: 34px !important;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  background: linear-gradient(135deg, #3b0d12, #641722);
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  box-shadow: 0 12px 36px rgba(0,0,0,.35);
}

@media (max-width: 820px) {
  .site-header { height: 76px; padding: 0 18px; }
  .brand img { width: 58px; height: 58px; }
  .menu-toggle {
    display: grid;
    gap: 6px;
    background: transparent;
    border: 0;
    padding: 10px;
  }
  .menu-toggle span {
    width: 24px;
    height: 1px;
    background: var(--cream);
    display: block;
  }
  .nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    padding: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(9,8,6,.97);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 8px 4px; }
  .nav-cta { text-align: center; }

  .hero-media { background-position: 58% center; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7,6,5,.40) 0%, rgba(7,6,5,.68) 58%, rgba(7,6,5,.88) 100%);
  }
  .hero-content { align-self: end; padding-bottom: 110px; }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 5.4rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }

  .section { padding: 82px 0; }
  .method-grid, .cards, .professional-grid, .location-grid, .closing-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .method-grid { gap: 34px; }
  .cards { gap: 12px; }
  .card { min-height: 0; padding: 26px; }
  .professional-grid { gap: 40px; }
  .portrait-frame img { aspect-ratio: 4/5; }
  .footer-grid { text-align: center; }
  .footer img { margin-inline: auto; }
  .footer-links { justify-content: center; }
  .whatsapp-float span { font-size: .86rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
