
    :root {
      --cream:   #faf7f2;
      --warm:    #f0e8d8;
      --gold:    #b8945a;
      --gold-lt: #d4ae7a;
      --dark:    #1a1614;
      --muted:   #6b5f55;
      --border:  rgba(184,148,90,.25);
    }

    *, *::before, *::after { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--cream);
      color: var(--dark);
      overflow-x: hidden;
    }

    /* ───── NAVBAR ───── */
    .navbar {
      background: rgba(250,247,242,.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--dark) !important;
      letter-spacing: .02em;
    }
    .nav-link {
      font-family: 'Jost', sans-serif;
      font-weight: 400;
      font-size: .85rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--muted) !important;
      transition: color .3s;
    }
    .nav-link:hover, .nav-link.active { color: var(--gold) !important; }
    .btn-gold {
      font-family: 'Jost', sans-serif;
      font-size: .78rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      background: var(--gold);
      color: #fff;
      border: none;
      padding: .5rem 1.4rem;
      border-radius: 0;
      transition: background .3s;
    }
    .btn-gold:hover { background: var(--gold-lt); color: #fff; }

    /* ───── HERO ───── */
    .hero {
      position: relative;
      height: 70vh;
      min-height: 480px;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      padding-bottom: 4rem;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: url('./bg-images/bg-images.jpg') center/cover no-repeat;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(26,22,20,.82) 0%, rgba(26,22,20,.18) 60%, transparent 100%);
    }
    .hero-content { position: relative; z-index: 2; }
    .hero-label {
      font-size: .72rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold-lt);
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.6rem, 6vw, 4.4rem);
      color: #fff;
      line-height: 1.1;
      margin: .4rem 0 1.2rem;
    }
    .hero-title em { font-style: italic; color: var(--gold-lt); }
    .hero-divider {
      width: 50px;
      height: 1px;
      background: var(--gold);
      margin-bottom: 1.4rem;
    }
    .hero-stat {
      font-size: .78rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255,255,255,.6);
    }
    .hero-stat span { color: var(--gold-lt); font-size: 1.4rem; font-family: 'Playfair Display', serif; display: block; }

    /* ───── FILTER TABS ───── */
    .filter-wrap {
      border-bottom: 1px solid var(--border);
      padding: 2.2rem 0 0;
      background: var(--cream);
      position: sticky;
      top: 56px;
      z-index: 100;
    }
    .filter-nav {
      display: flex;
      gap: 0;
      list-style: none;
      margin: 0;
      padding: 0;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .filter-nav::-webkit-scrollbar { display: none; }
    .filter-btn {
      font-family: 'Jost', sans-serif;
      font-size: .78rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--muted);
      background: none;
      border: none;
      border-bottom: 2px solid transparent;
      padding: .8rem 1.6rem;
      white-space: nowrap;
      cursor: pointer;
      transition: color .25s, border-color .25s;
    }
    .filter-btn:hover { color: var(--dark); }
    .filter-btn.active {
      color: var(--gold);
      border-bottom-color: var(--gold);
    }

    /* ───── SECTION HEADING ───── */
    .sec-label {
      font-size: .72rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .sec-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.2;
      color: var(--dark);
    }
    .sec-title em { font-style: italic; color: var(--muted); }
    .gold-line {
      width: 40px; height: 1px;
      background: var(--gold);
      margin: 1.2rem 0;
    }

    /* ───── MASONRY GRID ───── */
    .portfolio-grid {
      columns: 3 280px;
      column-gap: 1rem;
      padding: 2.5rem 0 4rem;
    }
    .grid-item {
      break-inside: avoid;
      margin-bottom: 1rem;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
    .grid-item img {
      width: 100%;
      display: block;
      transition: transform .6s cubic-bezier(.25,.46,.45,.94);
    }
    .grid-item:hover img { transform: scale(1.06); }
    .grid-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(26,22,20,.78) 0%, transparent 55%);
      opacity: 0;
      transition: opacity .4s;
      display: flex;
      align-items: flex-end;
      padding: 1.4rem;
    }
    .grid-item:hover .grid-overlay { opacity: 1; }
    .grid-meta { color: #fff; }
    .grid-meta h6 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      margin: 0 0 .2rem;
    }
    .grid-meta small {
      font-size: .72rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold-lt);
    }
    .grid-tag {
      position: absolute;
      top: .9rem; left: .9rem;
      background: var(--gold);
      color: #fff;
      font-size: .65rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      padding: .25rem .7rem;
    }

    /* tall / wide helpers */
    .grid-item.tall img  { aspect-ratio: 3/4; object-fit: cover; }
    .grid-item.wide img  { aspect-ratio: 4/3; object-fit: cover; }
    .grid-item.sqr  img  { aspect-ratio: 1/1; object-fit: cover; }

    /* ───── FILMS ROW ───── */
    .film-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
    .film-card img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      display: block;
      transition: transform .6s cubic-bezier(.25,.46,.45,.94);
    }
    .film-card:hover img { transform: scale(1.05); }
    .film-dark {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(26,22,20,.85) 0%, rgba(26,22,20,.12) 60%);
    }
    .film-info {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      justify-content: space-between;
      padding: 1.2rem;
    }
    .film-duration {
      align-self: flex-end;
      background: rgba(26,22,20,.7);
      color: #fff;
      font-size: .72rem;
      letter-spacing: .1em;
      padding: .2rem .55rem;
    }
    .film-play {
      width: 48px; height: 48px;
      border: 1.5px solid #fff;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-size: 1.1rem;
      margin-bottom: .6rem;
      transition: background .3s, border-color .3s;
    }
    .film-card:hover .film-play { background: var(--gold); border-color: var(--gold); }
    .film-bottom h6 {
      font-family: 'Playfair Display', serif;
      color: #fff;
      margin: 0 0 .15rem;
      font-size: .98rem;
    }
    .film-bottom small {
      font-size: .72rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold-lt);
    }

    /* ───── DESTINATIONS STRIP ───── */
    .dest-strip {
      background: var(--dark);
      padding: 3.5rem 0;
    }
    .dest-item {
      text-align: center;
      border-right: 1px solid rgba(255,255,255,.08);
      padding: 0 1.5rem;
    }
    .dest-item:last-child { border-right: none; }
    .dest-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      color: var(--gold);
      line-height: 1;
    }
    .dest-label {
      font-size: .72rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255,255,255,.45);
      margin-top: .4rem;
    }

    /* ───── LIGHTBOX ───── */
    .lightbox-overlay {
      display: none;
      position: fixed; inset: 0;
      background: rgba(10,8,7,.95);
      z-index: 9999;
      align-items: center;
      justify-content: center;
    }
    .lightbox-overlay.open { display: flex; }
    .lightbox-img {
      max-width: 88vw;
      max-height: 88vh;
      object-fit: contain;
      box-shadow: 0 30px 80px rgba(0,0,0,.7);
    }
    .lb-close {
      position: absolute; top: 1.4rem; right: 1.6rem;
      color: #fff; font-size: 1.8rem; cursor: pointer;
      background: none; border: none;
      transition: color .2s;
    }
    .lb-close:hover { color: var(--gold); }
    .lb-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      color: #fff; font-size: 2rem; cursor: pointer;
      background: rgba(255,255,255,.08);
      border: none; padding: .6rem 1rem;
      transition: background .2s;
    }
    .lb-arrow:hover { background: var(--gold); }
    .lb-prev { left: 1rem; }
    .lb-next { right: 1rem; }
    .lb-caption {
      position: absolute; bottom: 1.6rem; left: 50%;
      transform: translateX(-50%);
      text-align: center;
    }
    .lb-caption h6 {
      font-family: 'Playfair Display', serif;
      color: #fff; margin: 0; font-size: 1rem;
    }
    .lb-caption small {
      font-size: .72rem; letter-spacing: .14em;
      text-transform: uppercase; color: var(--gold-lt);
    }

    /* ───── CTA BANNER ───── */
    .cta-banner {
      position: relative;
      overflow: hidden;
      background: url('https://thewedpicfilms.com/assets/images/portfolio/3.jpg') center/cover no-repeat;
      min-height: 420px;
      display: flex; align-items: center;
    }
    .cta-banner-overlay {
      position: absolute; inset: 0;
      background: rgba(26,22,20,.78);
    }
    .cta-content { position: relative; z-index: 2; }

    /* ───── FOOTER ───── */
    footer {
      background: var(--dark);
      border-top: 1px solid rgba(255,255,255,.06);
      padding: 2.4rem 0;
    }
    .foot-brand {
      font-family: 'Playfair Display', serif;
      color: var(--cream);
      font-size: 1.2rem;
    }
    .foot-link {
      font-size: .78rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.35);
      text-decoration: none;
      transition: color .2s;
    }
    .foot-link:hover { color: var(--gold); }
    .foot-copy {
      font-size: .72rem;
      color: rgba(255,255,255,.22);
    }

    /* ───── RESPONSIVE TWEAKS ───── */
    @media (max-width: 767px) {
      .portfolio-grid { columns: 2 160px; }
      .dest-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 1rem 0; }
      .dest-item:last-child { border-bottom: none; }
    }
    @media (max-width: 479px) {
      .portfolio-grid { columns: 1; }
    }

    /* ───── SCROLL REVEAL ───── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.in { opacity: 1; transform: none; }
