/*
Theme Name: Bombay Party Rentals
Author: Emmanuel
Version: 1.0
*/


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

    :root {
      --orange:   #FF4D00;
      --cream:    #FFF8EE;
      --ink:      #1C1C1C;
      --gold:     #FFD166;
      --green:    #0A3D2B;
      --green-lt: #E8F5EF;
      --white:    #FFFFFF;
      --pad:      clamp(1.25rem, 5vw, 5rem);
    }

    html { scroll-behavior: smooth; }
  

    body {
      font-family: 'Inter', sans-serif;
      color: var(--ink);
      background: var(--cream);
      overflow-x: hidden;
    }

    /* ═══════════════ NAV ═══════════════ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem var(--pad);
      background: var(--ink);
    }

    .nav-logo {
      display: flex;
      flex-direction: column;
      line-height: 1;
      gap: 0.1rem;
    }
    .nav-logo-top {
      font-family: 'Marcellus', serif;
      font-size: clamp(1.1rem, 2.5vw, 1.4rem);
      font-weight: 900;
      color: var(--cream);
      letter-spacing: 0.04em;
    }
    .nav-logo-top span { color: var(--orange); }
    .nav-logo-sub {
      font-size: 0.58rem;
      font-weight: 600;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: rgba(255,248,238,0.45);
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.82rem;
      font-weight: 500;
      color: rgba(255,248,238,0.65);
      text-decoration: none;
      letter-spacing: 0.04em;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
      padding: 0.5rem 1.4rem;
      border-radius: 4px;
      background: var(--orange);
      color: var(--white);
      font-size: 0.82rem;
      font-weight: 700;
      text-decoration: none;
      letter-spacing: 0.03em;
      transition: background 0.2s, transform 0.2s;
    }
    .nav-cta:hover { background: #e63e00; transform: translateY(-1px); }

    @media (max-width: 640px) { .nav-links { display: none; } }

    /* ═══════════════ HERO ═══════════════ */
    .hero {
      min-height: 100svh;
      background: var(--green);
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 8rem var(--pad) 8rem;
      gap: 4rem;
    }





    /* Diagonal canopy stripe texture */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 28px,
        rgba(255,77,0,0.09) 28px,
        rgba(255,77,0,0.09) 56px
      );
      pointer-events: none;
    }

    /* Orange bottom arc */
    .hero-arc {
      position: absolute;
      bottom: -2px; left: 0; right: 0;
      height: 100px;
      background: var(--cream);
      clip-path: ellipse(55% 100% at 50% 100%);
      z-index: 0;
    }

    .hero-text { position: relative; z-index: 2; }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.35rem 1rem;
      border-radius: 2px;
      background: rgba(255,209,102,0.18);
      border: 1px solid rgba(255,209,102,0.5);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.8rem;
    }

    .hero-headline {
      font-family: 'Marcellus', serif;
      font-size: clamp(3rem, 6.5vw, 6rem);
      font-weight: 900;
      line-height: 1.0;
      color: var(--cream);
      margin-bottom: 0.3rem;
    }

    .hero-headline em {
      font-style: italic;
      color: var(--orange);
    }

    .hero-sub {
      font-family: 'Marcellus', serif;
      font-size: clamp(1.4rem, 3vw, 2.4rem);
      font-weight: 700;
      font-style: italic;
      color: var(--gold);
      margin-bottom: 1.6rem;
      line-height: 1.2;
    }

    .hero-desc {
      font-size: clamp(0.9rem, 1.8vw, 1rem);
      color: rgba(255,248,238,0.65);
      max-width: 400px;
      line-height: 1.75;
      margin-bottom: 2.5rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
    }

    .btn-primary {
      padding: 0.9rem 2.2rem;
      border-radius: 4px;
      background: var(--orange);
      color: var(--white);
      font-weight: 700;
      font-size: 0.9rem;
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: background 0.2s, transform 0.2s;
      display: inline-block;
    }
    .btn-primary:hover { background: #e63e00; transform: translateY(-2px); }

    .btn-ghost {
      padding: 0.9rem 2.2rem;
      border-radius: 4px;
      border: 1.5px solid rgba(255,248,238,0.3);
      color: rgba(255,248,238,0.85);
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s;
      display: inline-block;
    }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

    /* Hero photo grid */
    .hero-visual {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 0.65rem;
    }

    .hero-img {
      border-radius: 6px;
      overflow: hidden;
      position: relative;
    }
    .hero-img::after {
      content: '';
      position: absolute;
      inset: 0;
      border: 2px solid rgba(255,248,238,0.12);
      border-radius: 6px;
      pointer-events: none;
    }
    .hero-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    .hero-img:hover img { transform: scale(1.04); }
    .hero-img:nth-child(1) { grid-row: span 2; height: 340px; }
    .hero-img:nth-child(2) { height: 160px; }
    .hero-img:nth-child(3) { height: 160px; }

    /* Stats bar */
    .hero-stats {
      position: relative;
      z-index: 2;
      grid-column: 1 / -1;
      display: flex;
      background: rgba(255,248,238,0.07);
      border: 1px solid rgba(255,248,238,0.12);
      border-radius: 6px;
      overflow: hidden;
      margin-top: 0.75rem;
    }
    .stat {
      flex: 1;
      padding: 1.1rem 1.4rem;
      text-align: center;
      border-right: 1px solid rgba(255,248,238,0.1);
    }
    .stat:last-child { border-right: none; }
    .stat-num {
      font-family: 'Marcellus', serif;
      font-size: 1.75rem;
      font-weight: 900;
      color: var(--orange);
      display: block;
      line-height: 1;
    }
    .stat-label {
      font-size: 0.65rem;
      color: rgba(255,248,238,0.45);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-top: 0.3rem;
    }

    @media (max-width: 768px) {
      .hero { grid-template-columns: 1fr; padding-top: 6rem; }
      .hero-visual { display: none; }
      .hero-stats { display: none; }
    }

    /* ═══════════════ MARQUEE ═══════════════ */
    .marquee-section {
      width: 100%;
      border-top: 2px solid #080808;
      border-bottom: 2px solid #080808;
      background: var(--orange);
      overflow: hidden;
      position: relative;
      height: clamp(60px, 9vw, 88px);
      transform: translateZ(0);
    }
    .marquee-track {
      display: flex;
      align-items: center;
      width: max-content;
      height: 100%;
      will-change: transform;
    }
    .marquee-text {
      font-family: 'Marcellus', serif;
      font-size: clamp(22px, 4vw, 54px);
      font-weight: 900;
      font-style: italic;
      letter-spacing: 0.01em;
      text-transform: uppercase;
      color: var(--cream);
      white-space: nowrap;
      line-height: 1;
      padding: 0 clamp(16px, 2.5vw, 36px);
      user-select: none;
    }
    .marquee-pill {
      flex-shrink: 0;
      width: clamp(70px, 9vw, 140px);
      height: clamp(36px, 5vw, 64px);
      border-radius: 999px;
      overflow: hidden;
      border: 2px solid var(--cream);
      margin: 0 8px;
    }
    .marquee-pill img { width: 100%; height: 100%; object-fit: cover; display: block; }

    /* ═══════════════ SERVICES ═══════════════ */
    .services-section {
      padding: clamp(4rem, 10vw, 8rem) var(--pad);
      background: var(--cream);
    }

    .section-header {
      text-align: center;
      margin-bottom: clamp(2.5rem, 5vw, 4rem);
    }
    .section-kicker {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 0.6rem;
    }
    .section-title {
      font-family: 'Marcellus', serif;
      font-size: clamp(2rem, 4vw, 3.4rem);
      font-weight: 900;
      color: var(--ink);
      line-height: 1.1;
      text-transform: uppercase;
    }
    .section-title em { font-style: italic; color: var(--green); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1rem;
    }

    .service-card {
      background: var(--white);
      border-radius: 6px;
      padding: 1.6rem 1.4rem;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.65rem;
      border: 1.5px solid rgba(28,28,28,0.08);
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
      cursor: default;
    }
    .service-card:hover {
      border-color: var(--orange);
      transform: translateY(-4px);
      box-shadow: 0 14px 36px rgba(255,77,0,0.1);
    }

    .service-icon {
      width: 44px;
      height: 44px;
      border-radius: 6px;
      background: var(--green-lt);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .service-name {
      font-family: 'Marcellus', serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--ink);
      line-height: 1.25;
      text-transform: uppercase;
    }
    .service-desc {
      font-size: 0.78rem;
      color: rgba(28,28,28,0.5);
      line-height: 1.55;
    }

    /* ═══════════════ GALLERY ═══════════════ */
    .gallery-section {
      padding: clamp(4rem, 10vw, 8rem) var(--pad);
      background: var(--ink);
    }

    .gallery-section .section-kicker { color: var(--gold); }
    .gallery-section .section-title  { color: var(--cream); }
    .gallery-section .section-title em { color: var(--orange); }

    .gallery-header {
      margin-bottom: clamp(2rem, 4vw, 3rem);
    }

    .gallery-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1.5rem;
    }

    .gf-btn {
      padding: 0.45rem 1.2rem;
      border-radius: 3px;
      border: 1.5px solid rgba(255,248,238,0.2);
      background: transparent;
      color: rgba(255,248,238,0.6);
      font-family: 'Inter', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
    }
    .gf-btn:hover { transform: translateY(-1px); color: var(--cream); border-color: rgba(255,248,238,0.5); }
    .gf-btn.active                          { background: var(--cream);   color: var(--ink);    border-color: var(--cream); }
    .gf-btn[data-filter="chairs"].active    { background: var(--orange);  border-color: var(--orange); color: #fff; }
    .gf-btn[data-filter="canopies"].active  { background: var(--green);   border-color: var(--green); color: #fff; }
    .gf-btn[data-filter="tables"].active    { background: var(--gold);    border-color: var(--gold); color: var(--ink); }
    .gf-btn[data-filter="decor"].active     { background: #9B59B6;        border-color: #9B59B6; color: #fff; }
    .gf-btn[data-filter="setups"].active    { background: var(--orange);  border-color: var(--orange); color: #fff; }

    .gallery-count {
      font-size: 0.75rem;
      color: rgba(255,248,238,0.35);
      margin-bottom: 1.25rem;
      font-weight: 500;
    }

    .gallery-grid {
      columns: 4 180px;
      column-gap: 0.9rem;
    }

    .gallery-item {
      break-inside: avoid;
      margin-bottom: 0.9rem;
      position: relative;
      overflow: hidden;
      border-radius: 5px;
      cursor: pointer;
      opacity: 0;
      transform: translateY(22px) scale(0.98);
      transition: opacity 0.48s ease, transform 0.48s ease;
    }
    .gallery-item.visible  { opacity: 1; transform: translateY(0) scale(1); }
    .gallery-item.hidden   { display: none; }

    .gallery-item::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      z-index: 2;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .gallery-item:hover::before { opacity: 1; }
    .gallery-item[data-category="chairs"]::before   { background: var(--orange); }
    .gallery-item[data-category="canopies"]::before { background: var(--green); }
    .gallery-item[data-category="tables"]::before   { background: var(--gold); }
    .gallery-item[data-category="decor"]::before    { background: #9B59B6; }
    .gallery-item[data-category="setups"]::before   { background: var(--orange); }

    .gallery-item img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }
    .gallery-item:hover img { transform: scale(1.06); }

    .gi-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(28,28,28,0.85) 0%, transparent 55%);
      opacity: 0;
      transition: opacity 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0.9rem;
    }
    .gallery-item:hover .gi-overlay { opacity: 1; }

    .gi-badge {
      display: inline-block;
      padding: 0.16rem 0.6rem;
      border-radius: 2px;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 0.28rem;
      width: fit-content;
      transform: translateY(8px);
      transition: transform 0.28s ease 0.04s;
    }
    .gallery-item[data-category="chairs"]   .gi-badge { background: var(--orange); color: #fff; }
    .gallery-item[data-category="canopies"] .gi-badge { background: var(--green);  color: #fff; }
    .gallery-item[data-category="tables"]   .gi-badge { background: var(--gold);   color: var(--ink); }
    .gallery-item[data-category="decor"]    .gi-badge { background: #9B59B6;       color: #fff; }
    .gallery-item[data-category="setups"]   .gi-badge { background: var(--orange); color: #fff; }

    .gi-label {
      font-size: 0.84rem;
      font-weight: 600;
      color: #fff;
      line-height: 1.3;
      transform: translateY(8px);
      transition: transform 0.28s ease 0.08s;
    }
    .gallery-item:hover .gi-badge,
    .gallery-item:hover .gi-label { transform: translateY(0); }

    .gi-expand {
      position: absolute;
      top: 0.7rem; right: 0.7rem;
      width: 1.8rem; height: 1.8rem;
      border-radius: 3px;
      background: rgba(255,255,255,0.12);
      border: 1.5px solid rgba(255,255,255,0.3);
      display: flex; align-items: center; justify-content: center;
      opacity: 0;
      transform: scale(0.6);
      transition: opacity 0.25s, transform 0.25s;
    }
    .gallery-item:hover .gi-expand { opacity: 1; transform: scale(1); }
    .gi-expand svg { width: 11px; height: 11px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; }

    .gallery-empty {
      display: none;
      text-align: center;
      padding: 4rem 1rem;
      color: rgba(255,248,238,0.3);
      font-size: 0.95rem;
    }
    .gallery-empty.show { display: block; }

    @media (max-width: 600px) { .gallery-grid { columns: 2 140px; } }

    /* ═══════════════ LIGHTBOX ═══════════════ */
    .lightbox {
      position: fixed; inset: 0; z-index: 9999;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity 0.28s ease;
    }
    .lightbox.open { opacity: 1; pointer-events: all; }
    .lb-backdrop {
      position: absolute; inset: 0;
      background: rgba(28,28,28,0.95);
      backdrop-filter: blur(10px);
    }
    .lb-inner {
      position: relative; z-index: 1;
      width: min(92vw, 900px);
      display: flex; flex-direction: column;
      align-items: center; gap: 1rem;
    }
    .lb-img-wrap {
      width: 100%; border-radius: 5px; overflow: hidden;
      transform: scale(0.9);
      transition: transform 0.36s cubic-bezier(.22,.68,0,1.2);
    }
    .lightbox.open .lb-img-wrap { transform: scale(1); }
    .lb-img-wrap img { width: 100%; height: auto; max-height: 72vh; object-fit: contain; display: block; }
    .lb-bottom { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 1rem; }
    .lb-meta { color: #fff; }
    .lb-badge {
      display: inline-block; padding: 0.16rem 0.6rem; border-radius: 2px;
      font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; margin-bottom: 0.2rem;
    }
    .lb-label { font-size: 0.9rem; font-weight: 500; color: #fff; }
    .lb-counter { font-size: 0.72rem; color: rgba(255,255,255,0.35); white-space: nowrap; }
    .lb-close {
      position: absolute; top: -0.8rem; right: -0.8rem;
      width: 2.4rem; height: 2.4rem; border-radius: 3px;
      background: rgba(255,255,255,0.08);
      border: 1.5px solid rgba(255,255,255,0.2);
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .lb-close:hover { background: rgba(255,255,255,0.18); }
    .lb-close svg { width: 14px; height: 14px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; }
    .lb-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 2.6rem; height: 2.6rem; border-radius: 3px;
      background: rgba(255,255,255,0.08);
      border: 1.5px solid rgba(255,255,255,0.2);
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background 0.2s; z-index: 2;
    }
    .lb-nav:hover { background: rgba(255,255,255,0.18); }
    .lb-nav svg { width: 15px; height: 15px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; }
    .lb-prev { left: -3.8rem; }
    .lb-next { right: -3.8rem; }
    @media (max-width: 700px) {
      .lb-prev { left: 0.3rem; top: auto; bottom: -3.5rem; transform: none; }
      .lb-next { right: 0.3rem; top: auto; bottom: -3.5rem; transform: none; }
    }

    /* ═══════════════ CONTACT ═══════════════ */
.form-status {
  max-width: 900px;
  margin: 0 auto 2rem;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status-success {
  background: #e9f8ef;
  color: #0a5c32;
  border: 1px solid #b9e5c9;
}

.form-status-error {
  background: #fff0ed;
  color: #a72b15;
  border: 1px solid #f2c2b9;
}
    .contact-section {
      padding: clamp(4rem, 10vw, 8rem) var(--pad);
      background: var(--cream);
      position: relative;
      overflow: hidden;
    }

    /* Subtle stripe accent top-right */
    .contact-section::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 340px; height: 340px;
      background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 18px,
        rgba(255,77,0,0.06) 18px,
        rgba(255,77,0,0.06) 36px
      );
      border-radius: 0 0 0 100%;
      pointer-events: none;
    }

    .contact-inner {
      position: relative; z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 5vw, 5rem);
      align-items: start;
    }

    .contact-title {
      font-family: 'Marcellus', serif;
      font-size: clamp(2rem, 4vw, 3.4rem);
      font-weight: 900;
      color: var(--ink);
      line-height: 1.1;
      margin-bottom: 1rem;
      text-transform: uppercase;
    }
    .contact-title span { font-style: italic; color: var(--orange); }

    .contact-desc { color: rgba(28,28,28,0.55); line-height: 1.75; margin-bottom: 2rem; font-size: 0.95rem; }

    .contact-details { display: flex; flex-direction: column; gap: 1rem; }
    .contact-item { display: flex; align-items: center; gap: 1rem; }
    .contact-item-icon {
      width: 40px; height: 40px;
      border-radius: 5px;
      background: var(--green-lt);
      border: 1px solid rgba(10,61,43,0.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; flex-shrink: 0;
    }
    .contact-item-text { font-size: 0.88rem; color: rgba(28,28,28,0.7); line-height: 1.4; }
    .contact-item-text strong { display: block; color: var(--ink); font-weight: 600; margin-bottom: 0.1rem; }

    .contact-form {
      background: var(--white);
      border: 1.5px solid rgba(28,28,28,0.1);
      border-radius: 8px;
      padding: 2rem;
      display: flex; flex-direction: column; gap: 1rem;
    }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-field { display: flex; flex-direction: column; gap: 0.35rem; }
    .form-field label {
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: rgba(28,28,28,0.45);
    }
    .form-field input,
    .form-field select,
    .form-field textarea {
      background: var(--cream);
      border: 1.5px solid rgba(28,28,28,0.12);
      border-radius: 5px;
      padding: 0.72rem 1rem;
      color: var(--ink);
      font-family: 'Inter', sans-serif;
      font-size: 0.88rem;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
    }
    .form-field input::placeholder,
    .form-field textarea::placeholder { color: rgba(28,28,28,0.28); }
    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus { border-color: var(--orange); }
    .form-field select option { background: var(--cream); color: var(--ink); }
    .form-field textarea { resize: vertical; min-height: 100px; }

    .form-submit {
      padding: 0.9rem 2rem;
      border-radius: 4px;
      background: var(--orange);
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
      width: 100%;
      margin-top: 0.5rem;
      letter-spacing: 0.02em;
    }
    .form-submit:hover { background: #e63e00; transform: translateY(-2px); }

    @media (max-width: 768px) {
      .contact-inner { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
    }

    /* ═══════════════ FOOTER ═══════════════ */
    .footer-logo-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.1rem;
}
.footer-logo-top {
  font-family: 'Marcellus', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.footer-logo-top span { color: var(--orange); }
.footer-logo-sub {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,248,238,0.45);
}
    footer {
      background: var(--green);
      padding: 2rem var(--pad);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    .footer-logo {
      font-family: 'Marcellus', serif;
      font-size: 1.15rem;
      font-weight: 900;
      color: var(--cream);
    }
    .footer-logo span {  color: var(--orange); }
    .footer-copy { font-size: 0.75rem; color: rgba(255,248,238,0.35); }

    /* ═══════════════ SCROLL REVEAL ═══════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ═══════════════ HAMBURGER ═══════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(78vw, 320px);
  height: 100vh;
  background: var(--ink);
  z-index: 105;
  display: flex;
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  gap: 1.6rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  border-left: 1px solid rgba(255,248,238,0.08);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,248,238,0.75);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active-page { color: var(--gold); }

.mobile-menu .nav-cta {
  margin-top: 0.5rem;
  text-align: center;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 104;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255,248,238,0.08);
  border-radius: 4px;
  color: var(--cream);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  transition: background 0.2s;
}
.mobile-menu-close:hover { background: rgba(255,248,238,0.18); }

@media (max-width: 640px) {
  .nav-cta { display: none; } /* hide top-bar CTA, it's inside the mobile menu now */
  .hamburger { display: flex; }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding-top: 6rem; }
  .hero-visual {
    display: grid;
    margin-top: 1.5rem;
  }
  .hero-img:nth-child(1) { height: 220px; }
  .hero-img:nth-child(2),
  .hero-img:nth-child(3) { height: 140px; }
  .hero-stats { display: none; }
}















/* =========================================
   BOMBAY LOGO - FINAL ISOLATED FIX
========================================= */

#bombay-main-logo {
    width: 110px !important;
    height: 65px !important;
    max-width: 110px !important;
    max-height: 65px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    flex: 0 0 110px !important;
    overflow: hidden !important;

    padding: 0 !important;
    margin: 0 !important;
    line-height: 0 !important;
}

#bombay-main-logo img {
    width: 100% !important;
    height: 100% !important;

    max-width: 110px !important;
    max-height: 65px !important;

    display: block !important;
    object-fit: contain !important;

    padding: 0 !important;
    margin: 0 !important;
}

/* Force navbar back to normal height */
nav {
    height: 82px !important;
    min-height: 82px !important;
    max-height: 82px !important;

    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

/* Mobile */
@media (max-width: 640px) {

    #bombay-main-logo {
        width: 90px !important;
        height: 55px !important;
        max-width: 90px !important;
        max-height: 55px !important;
        flex-basis: 90px !important;
    }

    #bombay-main-logo img {
        max-width: 90px !important;
        max-height: 55px !important;
    }

    nav {
        height: 70px !important;
        min-height: 70px !important;
        max-height: 70px !important;
    }
}








/* =========================================
   BOMBAY FOOTER LOGO - FINAL ISOLATED FIX
========================================= */

#bombay-footer-logo {
    width: 140px !important;
    height: 85px !important;
    max-width: 140px !important;
    max-height: 85px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    flex: 0 0 140px !important;
    overflow: hidden !important;

    padding: 0 !important;
    margin: 0 !important;
    line-height: 0 !important;
    text-decoration: none !important;
}

#bombay-footer-logo img {
    width: 100% !important;
    height: 100% !important;

    max-width: 140px !important;
    max-height: 85px !important;

    display: block !important;
    object-fit: contain !important;

    padding: 0 !important;
    margin: 0 !important;
}

/* Mobile Footer Logo */
@media (max-width: 640px) {

    #bombay-footer-logo {
        width: 115px !important;
        height: 70px !important;
        max-width: 115px !important;
        max-height: 70px !important;
        flex-basis: 115px !important;
    }

    #bombay-footer-logo img {
        max-width: 115px !important;
        max-height: 70px !important;
    }
}








/* =========================================
   RECAPTCHA
========================================= */

.recaptcha-wrap {
    margin: 0.5rem 0 1.25rem;
    width: 100%;
}

@media (max-width: 380px) {
    .recaptcha-wrap {
        transform: scale(0.88);
        transform-origin: left center;
        width: 114%;
    }
}