       :root {
            --bg: #070707;
            --bg2: #0f0f0f;
            --card: #0b0b0b;
            --text: #ffffff;
            --muted: rgba(255, 255, 255, .72);
            --muted2: rgba(255, 255, 255, .55);
            --gold: #d7b65c;
            --gold2: #f1d688;
            --stroke: rgba(215, 182, 92, .35);
            --shadow: 0 18px 55px rgba(0, 0, 0, .55);
            --shadow2: 0 10px 30px rgba(0, 0, 0, .45);
            --radius: 18px;
            --radius2: 26px;
            --max: 1200px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
        }

        /* subtle noise / glow */
        .bg-glow {
            position: fixed;
            inset: -200px;
            z-index: -2;
            pointer-events: none;
            background:
                radial-gradient(800px 500px at 15% 15%, rgba(215, 182, 92, .14), transparent 60%),
                radial-gradient(800px 500px at 85% 25%, rgba(215, 182, 92, .10), transparent 60%),
                radial-gradient(1000px 700px at 50% 85%, rgba(215, 182, 92, .08), transparent 65%);
            filter: blur(0px);
        }

        .container {
            max-width: var(--max);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* NAV */
        .nav-wrap {
            position: sticky;
            top: 0;
            z-index: 999;

            background: #0b0b0b;
            /* solid background */
            backdrop-filter: none;
            /* remove blur */
            -webkit-backdrop-filter: none;

            border-bottom: 1px solid rgba(215, 182, 92, .25);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            gap: 14px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 240px;
        }


        .brand img {
            width: 150px;
            /* logo size */
            height: auto;
            /* keep proportions */
            object-fit: contain;
            background: transparent;
            border: none;
            padding: 0;
        }

        .brand .name {
            line-height: 1.05;
            font-weight: 800;
            letter-spacing: .2px;
        }

        .brand .sub {
            color: var(--muted2);
            font-size: 12px;
            font-weight: 600;
            margin-top: 2px;
        }

        .nav-links {
            display: flex;
            gap: 18px;
            align-items: center;
            flex-wrap: wrap;
        }

        .nav-links a {
            color: rgba(255, 255, 255, .82);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            padding: 8px 10px;
            border-radius: 12px;
            transition: .2s;
        }

        .nav-links a:hover {
            background: rgba(215, 182, 92, .12);
            color: var(--gold2);
        }

        .nav-cta {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 260px;
            justify-content: flex-end;
        }

        .pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 999px;
            border: 1px solid rgba(215, 182, 92, .25);
            background: rgba(215, 182, 92, .08);
            color: var(--gold2);
            font-weight: 700;
            font-size: 12px;
            white-space: nowrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 16px;
            border-radius: 999px;
            border: 1px solid rgba(215, 182, 92, .35);
            color: #0b0b0b;
            background: linear-gradient(135deg, var(--gold2), var(--gold));
            font-weight: 800;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(215, 182, 92, .18);
            transition: .2s;
            white-space: nowrap;
        }

        .btn:hover {
            transform: translateY(-1px);
            filter: saturate(1.05);
        }

        .btn.secondary {
            background: transparent;
            color: var(--gold2);
            box-shadow: none;
        }

        /* HERO */
        .hero {
            position: relative;
            padding: 44px 0 34px;
        }

        .hero-card {
            position: relative;
            border-radius: var(--radius2);
            overflow: hidden;
            border: 1px solid rgba(215, 182, 92, .22);
            box-shadow: var(--shadow);
            background: #000;
        }

        .hero-bg {
            position: absolute;
            inset: 0;

            background:
                linear-gradient(90deg,
                    rgba(0, 0, 0, .80) 0%,
                    rgba(0, 0, 0, .30) 55%,
                    rgba(0, 0, 0, .15) 100%),
                url("images/photo4.jpg");

            background-size: cover;
            background-position: center;

            animation: slowZoom 20s ease-in-out infinite;
            transform-origin: center;

            filter: contrast(1.05) saturate(1.1);
        }

        .hero-content {
            position: relative;
            padding: 54px 28px;
            display: grid;
            grid-template-columns: 1.2fr .8fr;
            gap: 22px;
            align-items: end;
            min-height: 520px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 999px;
            background: rgba(0, 0, 0, .55);
            border: 1px solid rgba(255, 255, 255, .14);
            color: rgba(255, 255, 255, .9);
            font-weight: 700;
            font-size: 13px;
            margin-bottom: 14px;
            width: max-content;
        }

        .badge i {
            color: var(--gold2);
        }

        .hero h1 {
            font-size: 64px;
            line-height: 1.02;
            letter-spacing: -.8px;
            margin-bottom: 12px;
        }

        .hero h1 .gold {
            color: var(--gold2);
        }

        .hero p {
            color: rgba(255, 255, 255, .86);
            font-size: 18px;
            line-height: 1.65;
            max-width: 640px;
            margin-bottom: 18px;
        }

        .hero-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 10px;
        }

        .hero-actions .btn {
            padding: 14px 18px;
        }

        .hero-actions .btn.secondary {
            border: 1px solid rgba(255, 255, 255, .22);
            color: #fff;
            background: rgba(0, 0, 0, .32);
        }

        .hero-actions .btn.secondary:hover {
            background: rgba(215, 182, 92, .10);
            border-color: rgba(215, 182, 92, .35);
            color: var(--gold2);
        }

        .hero-side {
            display: flex;
            flex-direction: column;
            gap: 14px;
            align-items: stretch;
            justify-content: flex-end;
        }

        .mini-card {
            background: rgba(0, 0, 0, .55);
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 18px;
            padding: 14px 14px;
        }

        .mini-title {
            font-weight: 800;
            color: var(--gold2);
            font-size: 14px;
            margin-bottom: 6px;
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .mini-title i {
            color: var(--gold2);
        }

        .mini-text {
            color: rgba(255, 255, 255, .78);
            font-size: 13px;
            line-height: 1.55;
        }

        .quick {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .quick .mini-card {
            padding: 14px;
        }

        .muted {
            color: var(--muted);
        }

        /* SECTION TITLES */
        .section {
            padding: 78px 0;
        }

        .section.alt {
            background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .02), transparent);
        }

        .section h2 {
            font-size: 40px;
            line-height: 1.1;
            margin-bottom: 12px;
            letter-spacing: -.5px;
        }

        .section h2 .gold {
            color: var(--gold2);
        }

        .section .lead {
            color: var(--muted);
            font-size: 16px;
            line-height: 1.8;
            max-width: 820px;
            margin-bottom: 26px;
        }

        /* CARDS GRID */
        .grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 18px;
        }

        .card {
            background: rgba(255, 255, 255, .02);
            border: 1px solid rgba(215, 182, 92, .18);
            border-radius: var(--radius);
            padding: 18px;
            box-shadow: var(--shadow2);
        }

        .card.soft {
            border-color: rgba(255, 255, 255, .10);
            background: rgba(0, 0, 0, .35);
        }

        .card h3 {
            font-size: 18px;
            margin-bottom: 8px;
        }

        .card p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.75;
        }

        .icon {
            width: 42px;
            height: 42px;
            border-radius: 14px;
            display: grid;
            place-items: center;
            background: rgba(215, 182, 92, .10);
            border: 1px solid rgba(215, 182, 92, .22);
            color: var(--gold2);
            margin-bottom: 12px;
            font-size: 18px;
        }

        /* SERVICES */
        .services .card {
            grid-column: span 4;
        }

        /* FLEET */
        .fleet .left {
            grid-column: span 7;
        }

        .fleet .right {
            grid-column: span 5;
        }

        .fleet .fleet-tiles {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-top: 16px;
        }

        .tile {
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, .10);
            background: #000;
            min-height: 140px;
            position: relative;
        }

        .tile .img {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            z-index: 1;
        }

        .tile .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .75));
        }

        .tile .txt {
            position: relative;
            padding: 14px;
            z-index: 2;
        }

        .tile .txt .t1 {
            font-weight: 800;
            color: var(--gold2);
            font-size: 14px;
        }

        .tile .txt .t2 {
            color: rgba(255, 255, 255, .78);
            font-size: 12px;
            margin-top: 5px;
            line-height: 1.5;
        }

        /* PRICING */
        .pricing .card {
            grid-column: span 4;
        }

        .price {
            font-size: 42px;
            font-weight: 900;
            color: var(--gold2);
            margin: 10px 0 4px;
        }

        .per {
            color: rgba(255, 255, 255, .7);
            font-weight: 700;
            font-size: 13px;
        }

        .list {
            margin-top: 14px;
            display: grid;
            gap: 10px;
        }

        .li {
            display: flex;
            gap: 10px;
            color: rgba(255, 255, 255, .78);
            font-size: 13px;
            line-height: 1.55;
        }

        .li i {
            color: var(--gold2);
            margin-top: 3px;
        }

        .pricing .btn {
            width: 100%;
            margin-top: 16px;
        }

        /* PICKUP */
        /* PICKUP CARDS */

        .pickup .grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            align-items: stretch;
        }

        /* CARD */
        .pickup .card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            padding: 22px;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        /* ROW */
        .pickup .pickup-row {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        /* SPACE BETWEEN ROWS */
        .pickup .pickup-row+.pickup-row {
            margin-top: 14px;
        }

        /* ICON */
        .pickup .pickup-row i {
            color: var(--gold2);
            font-size: 18px;
            margin-top: 3px;
            flex-shrink: 0;
        }

        /* TEXT WRAPPER */
        .pickup .pickup-row .txt {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.6;
        }

        /* LOGO */
        .pickup .pickup-row .pickup-logo {
            width: 150px;
            ;
            height: 80px;
            /* same visual size as right side */
            object-fit: contain;
            margin-bottom: 10px;
            display: block;
        }


        /* PARAGRAPH */
        .pickup .pickup-row .txt p {
            margin: 0;
            font-size: 14px;
            line-height: 1.5;
            opacity: 0.9;
        }
        /* MOBILE */
        @media (max-width: 768px) {
            .pickup .grid {
                grid-template-columns: 1fr;
            }
        }

        /* REVIEWS */
        .reviews .card {
            grid-column: span 4;
        }

        .stars {
            color: var(--gold2);
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        /* FAQ */
        .faq .card {
            grid-column: span 6;
        }

        details {
            background: rgba(0, 0, 0, .35);
            border: 1px solid rgba(255, 255, 255, .10);
            border-radius: 16px;
            padding: 14px;
        }

        summary {
            cursor: pointer;
            list-style: none;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
        }

        summary::-webkit-details-marker {
            display: none;
        }

        .faq p {
            margin-top: 10px;
        }

        /* CONTACT */
        .contact .left {
            grid-column: span 7;
        }

        .contact .right {
            grid-column: span 5;
        }

        .form {
            display: grid;
            gap: 12px;
            margin-top: 14px;
        }

        input,
        textarea {
            width: 100%;
            padding: 14px 14px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, .14);
            background: rgba(0, 0, 0, .35);
            color: #fff;
            outline: none;
        }

        input:focus,
        textarea:focus {
            border-color: rgba(215, 182, 92, .45);
        }

        textarea {
            min-height: 120px;
            resize: vertical;
        }

        .small {
            color: var(--muted2);
            font-size: 12px;
            line-height: 1.6;
        }

        /* MAP */
        .map-wrap {
            border-radius: var(--radius2);
            overflow: hidden;
            border: 1px solid rgba(215, 182, 92, .22);
            box-shadow: var(--shadow2);
        }

        iframe {
            width: 100%;
            height: 420px;
            border: 0;
        }

        /* FOOTER */
        footer {
            padding: 36px 0;
            border-top: 1px solid rgba(215, 182, 92, .20);
            background: rgba(0, 0, 0, .55);
        }

        footer .row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 18px;
            flex-wrap: wrap;
        }

        footer .f-title {
            font-weight: 900;
            color: var(--gold2);
            margin-bottom: 8px;
        }

        footer a {
            color: rgba(255, 255, 255, .8);
            text-decoration: none;
        }

        footer a:hover {
            color: var(--gold2);
        }

        .copy {
            margin-top: 18px;
            color: rgba(255, 255, 255, .55);
            font-size: 12px;
        }

        /* FLOATING WHATSAPP + EMAIL */
        .float {
            position: fixed;
            right: 18px;
            bottom: 18px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 2000;
        }

        .fab {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            box-shadow: 0 14px 34px rgba(0, 0, 0, .45);
            text-decoration: none;
            transition: .2s;
            border: 1px solid rgba(255, 255, 255, .14);
        }

        .fab:hover {
            transform: translateY(-2px) scale(1.03);
        }

        .fab i {
            font-size: 28px;
        }

        .fab.wa {
            background: #25D366;
            color: #fff;
        }

        .fab.mail {
            background: #d93025;
            color: #fff;
        }

        /* MOBILE */
        @media (max-width: 980px) {
            .hero-content {
                grid-template-columns: 1fr;
                padding: 70px 20px 40px;
                align-items:center;
            }

            .hero h1 {
                font-size: 34px;
                line-height:1.2;
            }

            .nav-links {
                display: none;
            }

            .nav-cta {
                min-width: auto;
            }

            .brand {
                min-width: auto;
            }

            .services .card {
                grid-column: span 12;
            }

            .fleet .left,
            .fleet .right {
                grid-column: span 12;
            }

            .pricing .card {
                grid-column: span 12;
            }

            .pickup .card {
                grid-column: span 12;
            }

            .reviews .card {
                grid-column: span 12;
            }

            .faq .card {
                grid-column: span 12;
            }

            .contact .left,
            .contact .right {
                grid-column: span 12;
            }
        }

        /* tiny reveal animation */
        .reveal {
            opacity: 0;
            transform: translateY(12px);
            transition: .6s ease;
        }

        .reveal.on {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes slowZoom {
            from {
                transform: scale(1);
            }

            to {
                transform: scale(1.1);
            }
        }
        /* =========================
   LEAVE A REVIEW (UI)
========================= */
.rev-head{ margin-bottom: 22px; }
.rev-title{ font-size: 34px; letter-spacing: .2px; }
.rev-sub{ margin-top: 10px; max-width: 760px; line-height: 1.8; }

.rev-grid{
  display: grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 18px;
  align-items: start;
}
@media (max-width: 920px){
  .rev-grid{ grid-template-columns: 1fr; }
}

.rev-card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  box-shadow: var(--shadowSoft);
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.rev-card:before{
  content:"";
  position:absolute; inset:-1px;
  background: radial-gradient(520px 260px at 20% 0%, rgba(215,182,92,.14), transparent 60%);
  pointer-events:none;
}

.rev-card-top{
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.rev-badge{
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke2);
  background: rgba(0,0,0,.35);
  color: var(--gold2);
  font-weight: 700;
  font-size: 13px;
}
.rev-note{ font-size: 12px; }

.rev-form{ position: relative; z-index: 1; }
.rev-row{ display:flex; gap: 12px; margin-top: 12px; }
@media (max-width: 560px){ .rev-row{ flex-direction: column; } }

.rev-field{ width: 100%; }
.rev-field label{
  display:block;
  font-size: 12px;
  color: var(--muted2);
  margin-bottom: 7px;
}
.rev-field input, .rev-field textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  color: var(--text);
  padding: 12px 12px;
  outline: none;
  transition: .25s var(--ease);
}
.rev-field textarea{ min-height: 120px; resize: vertical; }
.rev-field input:focus, .rev-field textarea:focus{
  border-color: rgba(241,214,136,.45);
  box-shadow: 0 0 0 4px rgba(241,214,136,.12);
}

.rev-count{ margin-top: 6px; text-align:right; }

.stars-input{
  display:flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 6px;
}
.stars-input input{ display:none; }
.stars-input label{
  font-size: 22px;
  cursor: pointer;
  color: rgba(255,255,255,.22);
  transition: .2s var(--ease);
  user-select:none;
}
.stars-input input:checked ~ label,
.stars-input label:hover,
.stars-input label:hover ~ label{
  color: var(--gold2);
  text-shadow: 0 8px 18px rgba(215,182,92,.18);
}
.rev-hint{ margin-top: 8px; }

.rev-actions{
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px;
  margin-top: 14px;
}
.rev-btn{
  border: 0;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(241,214,136,.95), rgba(215,182,92,.92));
  color: #101010;
  display:inline-flex; align-items:center; gap:10px;
  transition: transform .15s var(--ease);
}
.rev-btn:hover{ transform: translateY(-1px); }
.rev-link{
  display:inline-flex; align-items:center; gap:8px;
  text-decoration: none;
  font-size: 13px;
  border-bottom: 1px dashed rgba(255,255,255,.22);
}

.rev-msg{
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color: var(--muted);
  display:none;
}

/* Pending list */
.pending-wrap{ position: relative; z-index: 1; }
.pending-top{
  display:flex; align-items:center; justify-content:space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.pending-title{ font-weight: 900; letter-spacing:.2px; }
.pending-actions{ display:flex; gap: 8px; }
.mini-btn{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  color: var(--muted);
  border-radius: 12px;
  padding: 9px 10px;
  cursor:pointer;
  font-size: 12px;
  display:inline-flex; align-items:center; gap:8px;
}
.mini-btn:hover{ border-color: rgba(241,214,136,.35); }
.mini-btn.danger:hover{ border-color: rgba(255,120,120,.35); }

.pending-list{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  background: rgba(0,0,0,.28);
  padding: 12px;
  min-height: 220px;
}
.pending-item{
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  margin-bottom: 10px;
}
.pending-item:last-child{ margin-bottom:0; }
.pending-meta{ display:flex; justify-content:space-between; gap:10px; margin-bottom:8px; }
.pending-name{ font-weight: 800; }
.pending-stars{ color: var(--gold2); letter-spacing:1px; }
.pending-date{ color: var(--muted2); font-size: 12px; }
.pending-text{ color: var(--muted); line-height: 1.75; }
/* =========================
   MOBILE FIXES
   ========================= */
@media (max-width: 768px) {

  /* NAVBAR */
  .nav {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }

  .brand img {
    width: 120px;
  }

  .nav-links {
    justify-content: center;
    gap: 12px;
  }

  .nav-links a {
    font-size: 13px;
    padding: 6px 8px;
  }

  .nav-cta {
    justify-content: center;
    width: 100%;
  }

  .pill {
    font-size: 11px;
    padding: 6px 10px;
  }

  .btn {
    padding: 10px 14px;
    font-size: 13px;
  }

  /* HERO */
  .hero {
    padding-top: 20px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 14px;
  }

  /* HERO BUTTONS */
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
  }

  /* FLOATING BUTTONS */
  .floating-buttons {
    bottom: 16px;
    right: 16px;
  }

  .floating-buttons a {
    width: 48px;
    height: 48px;
  }
}
 /* =========================
   HAMBURGER
========================= */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #f1d688;
  border-radius: 3px;
}

/* =========================
   MOBILE NAV
========================= */
@media (max-width: 768px) {

  .nav {
    position: relative;
  }

  /* Show hamburger */
  .nav-toggle {
    display: flex;
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    z-index: 1002;
  }

  /* Dropdown menu (hidden by default) */
  .nav-links,
  .nav-cta {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0b0b0b;
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
    gap: 18px;
    border-top: 1px solid rgba(215,182,92,.25);
    z-index: 1001;
  }

  /* Show when menu is open */
  .nav.open .nav-links,
  .nav.open .nav-cta {
    display: flex;
  }
}
/* =========================================================
   NAV / HAMBURGER FINAL FIX
   (Overrides all previous rules cleanly)
========================================================= */

/* ---------- DESKTOP ---------- */
@media (min-width: 769px) {

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;              /* ✅ single row */
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;              /* ✅ stop wrapping */
    white-space: nowrap;
  }

  .nav-cta {
    display: flex;
    justify-content: flex-end;
  }

  .nav-toggle {
    display: none !important;       /* ✅ no hamburger on desktop */
  }
}

/* ---------- HAMBURGER BASE ---------- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--gold2);
  border-radius: 3px;
  transition: background .25s ease;
}

/* Hover + keyboard */
.nav-toggle:hover span,
.nav-toggle:focus-visible span {
  background: var(--gold2);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  outline: none;
  filter: drop-shadow(0 0 6px rgba(241,214,136,.6));
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {

  .nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* remove desktop constraints */
  .brand,
  .nav-cta {
    min-width: unset;
  }

  /* show hamburger */
  .nav-toggle {
    display: flex;
    position: absolute;
    right: 14px;                   /* ✅ spacing from text */
    top: 50%;
    transform: translateY(-50%);
    z-index: 2000;
  }

  /* hide menus by default */
  .nav-links,
  .nav-cta {
    display: none;
  }

  /* dropdown container */
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;                     /* ✅ drops DOWN */
    left: 0;
    width: 100%;
    background: var(--card);
    flex-direction: column;
    align-items: center;
    padding: 22px 0;
    gap: 14px;
    border-top: 1px solid var(--stroke);
    z-index: 1500;
  }

  /* CTA under links */
  .nav.open .nav-cta {
    display: flex;
    position: absolute;
    top: calc(100% + 260px);
    left: 0;
    width: 100%;
    justify-content: center;
    gap: 12px;
    padding-bottom: 18px;
    background: var(--card);
    z-index: 1500;
  }

  /* mobile menu links */
  .nav-links a {
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 999px;
    transition: all .25s ease;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: var(--gold2);
    color: #000;
    outline: none;
  }
}
/* ===== MOBILE DROPDOWN OVERLAY FIX ===== */
@media (max-width: 768px) {

  .nav {
    position: relative;
  }

  /* Hide by default */
  .nav-links,
  .nav-cta {
    display: none;
  }

  /* Dropdown panel */
  .nav.open .nav-links,
  .nav.open .nav-cta {
    display: flex;
    position: absolute;
    top: 100%;              /* sits UNDER navbar */
    left: 0;
    width: 100%;
    background: #0b0b0b;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid rgba(215,182,92,.25);
    z-index: 1500;
  }
}
/* ===============================
   DESKTOP NAV HARD RESET
=============================== */
@media (min-width: 769px) {

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-links {
    display: flex !important;
    position: static !important;
    flex-direction: row;
    background: none !important;
    gap: 18px;
  }

  .nav-cta {
    display: flex !important;
    position: static !important;
    background: none !important;
    padding: 0 !important;
    gap: 10px;
    justify-content: flex-end;
  }

  .nav-toggle {
    display: none !important;
  }
}
/* =================================================
   DESKTOP NAV FIX — FINAL
   Locks layout to prevent overlap
================================================= */
@media (min-width: 769px) {

  .nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
  }

  .nav-links {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap !important;   /* 🚫 STOP wrapping */
    white-space: nowrap;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .nav-cta {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    min-width: max-content;
  }

  .nav-toggle {
    display: none !important;
  }
}
/* =========================
   GALLERY PAGE
========================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.gallery-grid img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

/* =========================
   LIGHTBOX
========================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 16px;
}

.lightbox .close {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 34px;
  color: #fff;
  cursor: pointer;
}

/* =========================
   MOBILE TWEAKS
========================= */

@media (max-width: 480px) {
  .gallery-grid {
    gap: 10px;
  }

  .gallery-grid img {
    height: 120px;
    border-radius: 12px;
  }
}
/* MOBILE NAV — SHOW ALL LINKS (FIX CUT OFF) */
@media (max-width: 768px) {
  .nav {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    background: var(--bg);
    display: none;
    flex-direction: column;
    padding-bottom: 20px;
    z-index: 9999;
  }

  .nav.open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 14px 22px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
}
/* ==============================
   MOBILE NAV TOUCH FEEDBACK
   ============================== */

/* Only applies on touch devices */
@media (hover: none) and (pointer: coarse) {

  .nav-links a {
    -webkit-tap-highlight-color: transparent; /* remove blue flash */
  }

  /* Finger touching / sliding */
  .nav-links a:active,
  .nav-links a:focus-visible {
    background: rgba(215, 182, 92, 0.18);
    color: var(--gold2);
  }
}