
    :root {
      --gold: #b8975a;
      --gold-light: #d4b483;
      --cream: #f7f3ec;
      --dark: #0e0c0a;
      --dark2: #1a1713;
      --muted: #8a8070;
      --font-serif: 'Cormorant Garamond', Georgia, serif;
      --font-sans: 'Jost', sans-serif;
    }

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

    body {
      background: var(--dark);
      color: var(--cream);
      font-family: var(--font-sans);
      font-weight: 300;
      overflow-x: hidden;
    }

    /* ─── NAVBAR ─── */
    .site-nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 999;
      padding: 22px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(to bottom, rgba(14,12,10,0.95) 0%, transparent 100%);
      transition: background 0.4s;
    }
    .site-nav .logo {
      font-family: var(--font-serif);
      font-size: 1.1rem;
      font-weight: 400;
      letter-spacing: 0.18em;
      color: var(--cream);
      text-decoration: none;
      text-transform: uppercase;
    }
    .site-nav .nav-links a {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(247,243,236,0.7);
      text-decoration: none;
      margin-left: 32px;
      transition: color 0.3s;
    }
    .site-nav .nav-links a:hover,
    .site-nav .nav-links a.active { color: var(--gold); }
    .site-nav .enquire-btn {
      border: 1px solid var(--gold);
      color: var(--gold);
      padding: 8px 24px;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      margin-left: 36px;
      transition: all 0.3s;
    }
    .site-nav .enquire-btn:hover { background: var(--gold); color: var(--dark); }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: flex-end;
      padding-bottom: 100px;
      background: url('../images/portfolio/20.jpg') center/cover no-repeat;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(14,12,10,0.45) 0%, rgba(14,12,10,0.8) 60%, var(--dark) 100%);
    }
    .hero-content { position: relative; z-index: 2; padding-left: 60px; max-width: 800px; }
    .hero-eyebrow {
      font-size: 0.68rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: flex; align-items: center; gap: 14px;
    }
    .hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
    .hero h1 {
      font-family: var(--font-serif);
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--cream);
      margin-bottom: 24px;
    }
    .hero h1 em { font-style: italic; color: var(--gold-light); }
    .hero-sub {
      font-size: 0.85rem;
      line-height: 1.9;
      color: rgba(247,243,236,0.7);
      max-width: 520px;
      margin-bottom: 40px;
      font-weight: 300;
    }
    .hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-gold {
      background: var(--gold);
      color: var(--dark);
      border: none;
      padding: 14px 36px;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      font-family: var(--font-sans);
      font-weight: 400;
      transition: all 0.3s;
    }
    .btn-gold:hover { background: var(--gold-light); color: var(--dark); }
    .btn-outline-gold {
      border: 1px solid rgba(184,151,90,0.5);
      color: var(--gold);
      padding: 14px 36px;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      font-family: var(--font-sans);
      font-weight: 400;
      transition: all 0.3s;
    }
    .btn-outline-gold:hover { border-color: var(--gold); color: var(--cream); background: rgba(184,151,90,0.1); }

    /* ─── SECTION BASE ─── */
    section { padding: 100px 0; }
    .section-label {
      font-size: 0.64rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }
    .section-heading {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 3.5vw, 3.4rem);
      font-weight: 300;
      line-height: 1.2;
      color: var(--cream);
    }
    .section-heading em { font-style: italic; color: var(--gold-light); }
    .section-body {
      font-size: 0.88rem;
      line-height: 2;
      color: rgba(247,243,236,0.65);
      font-weight: 300;
    }
    .divider { width: 48px; height: 1px; background: var(--gold); margin: 24px 0; }

    /* ─── BREADCRUMB ─── */
    .breadcrumb-bar {
      background: var(--dark2);
      padding: 14px 60px;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      color: var(--muted);
    }
    .breadcrumb-bar a { color: var(--muted); text-decoration: none; }
    .breadcrumb-bar a:hover { color: var(--gold); }
    .breadcrumb-bar span { color: var(--gold); margin: 0 8px; }

    /* ─── INTRO ─── */
    .intro-section { background: var(--dark); }
    .intro-stats {
      display: flex;
      gap: 0;
      border: 1px solid rgba(184,151,90,0.2);
      margin-top: 56px;
    }
    .stat-item {
      flex: 1;
      padding: 36px 28px;
      border-right: 1px solid rgba(184,151,90,0.2);
      text-align: center;
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: var(--font-serif);
      font-size: 2.8rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.65rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 8px;
    }

    /* ─── VENUES ─── */
    .venues-section { background: var(--dark2); }
    .venue-card {
      border: 1px solid rgba(184,151,90,0.15);
      padding: 36px 32px;
      position: relative;
      transition: border-color 0.4s, transform 0.4s;
      cursor: default;
      height: 100%;
    }
    .venue-card:hover {
      border-color: rgba(184,151,90,0.5);
      transform: translateY(-4px);
    }
    .venue-num {
      font-family: var(--font-serif);
      font-size: 3rem;
      font-weight: 300;
      color: rgba(184,151,90,0.15);
      position: absolute;
      top: 16px; right: 24px;
      line-height: 1;
    }
    .venue-name {
      font-family: var(--font-serif);
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 10px;
    }
    .venue-desc { font-size: 0.82rem; line-height: 1.8; color: var(--muted); }

    /* ─── WHY CHOOSE ─── */
    .why-section { background: var(--dark); }
    .why-item {
      display: flex;
      gap: 24px;
      margin-bottom: 40px;
      align-items: flex-start;
    }
    .why-icon {
      min-width: 40px;
      height: 40px;
      border: 1px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-serif);
      font-size: 1.1rem;
      color: var(--gold);
    }
    .why-title {
      font-family: var(--font-serif);
      font-size: 1.05rem;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 6px;
    }
    .why-desc { font-size: 0.82rem; line-height: 1.8; color: var(--muted); }

    /* ─── SEO TEXT SECTION ─── */
    .seo-section {
      background: var(--dark2);
      padding: 80px 0;
    }
    .seo-section h2 {
      font-family: var(--font-serif);
      font-size: clamp(1.6rem, 3vw, 2.6rem);
      font-weight: 300;
      color: var(--cream);
      margin-bottom: 20px;
    }
    .seo-section h3 {
      font-family: var(--font-serif);
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--gold-light);
      margin: 32px 0 12px;
    }
    .seo-section p {
      font-size: 0.87rem;
      line-height: 2;
      color: rgba(247,243,236,0.6);
      margin-bottom: 16px;
    }

    /* ─── GALLERIES STRIP ─── */
    .gallery-strip {
      display: flex;
      gap: 4px;
      overflow: hidden;
    }
    .gallery-strip img {
      flex: 1;
      height: 380px;
      object-fit: cover;
      filter: grayscale(15%);
      transition: flex 0.6s ease, filter 0.4s;
      cursor: pointer;
    }
    .gallery-strip img:hover { flex: 2.5; filter: grayscale(0%); }

    /* ─── TESTIMONIAL ─── */
    .testimonial-section { background: var(--dark); }
    .testimonial-card {
      border-left: 2px solid var(--gold);
      padding: 32px 36px;
      background: rgba(184,151,90,0.04);
    }
    .testimonial-text {
      font-family: var(--font-serif);
      font-size: 1.25rem;
      font-style: italic;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(247,243,236,0.85);
      margin-bottom: 20px;
    }
    .testimonial-author {
      font-size: 0.72rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ─── FAQ ─── */
    .faq-section { background: var(--dark2); }
    .faq-item {
      border-bottom: 1px solid rgba(184,151,90,0.15);
      padding: 24px 0;
    }
    .faq-q {
      font-family: var(--font-serif);
      font-size: 1.05rem;
      font-weight: 400;
      color: var(--cream);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .faq-q::after {
      content: '+';
      color: var(--gold);
      font-size: 1.4rem;
      font-weight: 300;
      transition: transform 0.3s;
    }
    .faq-q.open::after { transform: rotate(45deg); }
    .faq-a {
      font-size: 0.84rem;
      line-height: 1.9;
      color: var(--muted);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
      padding: 0;
    }
    .faq-a.open { max-height: 200px; padding-top: 14px; }

    /* ─── CTA FINAL ─── */
    .cta-section {
      background: var(--dark);
      text-align: center;
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: 'JAIPUR';
      position: absolute;
      font-family: var(--font-serif);
      font-size: 22vw;
      font-weight: 300;
      color: rgba(184,151,90,0.04);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      white-space: nowrap;
      pointer-events: none;
    }
    .cta-section h2 {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 4vw, 3.8rem);
      font-weight: 300;
      color: var(--cream);
      margin-bottom: 16px;
      position: relative;
    }
    .cta-section h2 em { font-style: italic; color: var(--gold-light); }
    .cta-sub {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 48px;
      letter-spacing: 0.1em;
      position: relative;
    }

    /* ─── FOOTER ─── */
    .site-footer {
      background: var(--dark2);
      padding: 48px 60px 32px;
      border-top: 1px solid rgba(184,151,90,0.15);
    }
    .footer-logo {
      font-family: var(--font-serif);
      font-size: 1.1rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--cream);
      text-decoration: none;
    }
    .footer-links a {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      margin-right: 24px;
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy {
      font-size: 0.7rem;
      color: rgba(138,128,112,0.5);
      margin-top: 28px;
    }

    /* ─── MOBILE ─── */
    @media (max-width: 768px) {
      .site-nav { padding: 18px 20px; }
      .site-nav .nav-links { display: none; }
      .hero-content { padding-left: 24px; padding-right: 24px; }
      .breadcrumb-bar { padding: 12px 20px; }
      .intro-stats { flex-direction: column; }
      .stat-item { border-right: none; border-bottom: 1px solid rgba(184,151,90,0.2); }
      .gallery-strip img { height: 200px; }
      .site-footer { padding: 40px 24px 24px; }
      .cta-section { padding: 80px 24px; }
    }

    /* ─── ANIMATIONS ─── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
