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

    :root {
      --bg:         #0A0D14;
      --panel:      #131826;
      --border:     #262d3d;
      --text:       #F2EEE4;
      --muted:      #8a9ab5;
      --gold:       #C9A24B;
      --gold-soft:  #E4C77C;
      --magenta:    #FF4F91;
      --cyan:       #3FE6C4;
      --r:          3px;
      --serif:      'Fraunces', Georgia, serif;
      --body:       'Manrope', system-ui, sans-serif;
      --mono:       'IBM Plex Mono', 'Courier New', monospace;
    }

    html { scroll-behavior: smooth; background: var(--bg); color: var(--text); }
    body { font-family: var(--body); font-size: 1rem; line-height: 1.65; background: var(--bg); overflow-x: hidden; }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    /* ─── Type helpers ────────────────────────────────────────────── */
    .eyebrow {
      font-family: var(--mono);
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .sh { /* section heading */
      font-family: var(--serif);
      font-size: clamp(2rem, 5vw, 3.25rem);
      font-weight: 700;
      line-height: 1.08;
      color: var(--text);
    }
    .sp { /* section paragraph */
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 52ch;
      line-height: 1.75;
    }
    .section-hdr { margin-bottom: 3rem; }
    .section-hdr .eyebrow { margin-bottom: 0.75rem; }
    .section-hdr .sh      { margin-bottom: 1rem; }

    /* ─── Layout ──────────────────────────────────────────────────── */
    .wrap {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    section {
      padding: 6rem 0;
      border-top: 1px solid var(--border);
    }

    /* ─── LED strip ───────────────────────────────────────────────── */
    .led {
      height: 3px;
      width: 100%;
      background: linear-gradient(90deg, var(--gold), var(--magenta), var(--cyan), var(--gold));
      background-size: 300% 100%;
      animation: led 4s linear infinite;
    }
    @keyframes led {
      0%   { background-position: 0% 50%; }
      100% { background-position: 100% 50%; }
    }

    /* ─── Buttons ─────────────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--mono);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.8rem 1.75rem;
      border-radius: var(--r);
      cursor: pointer;
      transition: background 0.18s, border-color 0.18s, color 0.18s;
      border: 1.5px solid transparent;
      white-space: nowrap;
    }
    .btn-gold {
      background: var(--gold);
      color: var(--bg);
      border-color: var(--gold);
    }
    .btn-gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
    .btn-ghost {
      background: transparent;
      color: var(--text);
      border-color: var(--border);
    }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

    /* ─── Header / Nav ────────────────────────────────────────────── */
    #hdr {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(10,13,20,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .hdr-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.85rem 1.5rem;
      max-width: 1160px;
      margin: 0 auto;
      gap: 1.5rem;
    }
    .logo { display: flex; flex-direction: column; gap: 0.2rem; line-height: 1; }
    .logo-name {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.02em;
    }
    .logo-tag {
      font-family: var(--mono);
      font-size: 0.58rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-family: var(--mono);
      font-size: 0.66rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      transition: color 0.18s;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }
    .nav-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all 0.25s;
    }
    .mob-nav {
      display: none;
      flex-direction: column;
      background: var(--panel);
      border-top: 1px solid var(--border);
    }
    .mob-nav.open { display: flex; }
    .mob-nav a {
      font-family: var(--mono);
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      padding: 1rem 1.5rem;
      border-bottom: 1px solid var(--border);
      display: block;
      transition: color 0.18s;
    }
    .mob-nav a:last-child { border-bottom: none; }
    .mob-nav a:hover { color: var(--text); }

    /* ─── Hero ────────────────────────────────────────────────────── */
    #hero {
      min-height: calc(100svh - 58px);
      display: flex;
      align-items: center;
      padding: 6rem 0 5rem;
      border-top: none;
      position: relative;
      overflow: hidden;
    }
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 55% 55% at 65% 45%, rgba(201,162,75,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 15% 85%, rgba(63,230,196,0.04) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-inner {
      position: relative;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 260px;
      align-items: center;
      gap: 4rem;
    }
    .hero-logo {
      width: 100%;
      max-width: 260px;
      height: auto;
      display: block;
      transform: translateY(-2.5rem);
      filter: drop-shadow(0 4px 28px rgba(201,162,75,0.4));
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      font-family: var(--mono);
      font-size: 0.62rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--cyan);
      background: rgba(63,230,196,0.08);
      border: 1px solid rgba(63,230,196,0.2);
      border-radius: 100px;
      padding: 0.35rem 0.85rem;
      margin-bottom: 1.5rem;
    }
    .badge .dot {
      width: 6px;
      height: 6px;
      background: var(--cyan);
      border-radius: 50%;
      animation: blink 2s ease-in-out infinite;
    }
    @keyframes blink {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.45; transform: scale(0.8); }
    }
    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }
    .hero-eyebrow::before {
      content: '';
      display: inline-block;
      width: 30px;
      height: 2px;
      background: var(--gold);
      flex-shrink: 0;
    }
    .hero-h1 {
      font-family: var(--serif);
      font-size: clamp(2.8rem, 7.5vw, 5rem);
      font-weight: 700;
      line-height: 1.0;
      letter-spacing: -0.025em;
      margin-bottom: 1.5rem;
    }
    .hero-h1 em { font-style: italic; color: var(--gold-soft); }
    .hero-sub {
      font-size: 1.08rem;
      color: var(--muted);
      max-width: 50ch;
      line-height: 1.75;
      margin-bottom: 2.5rem;
    }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
    .hero-tel {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
    }
    .tel-label {
      font-family: var(--mono);
      font-size: 0.62rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .tel-num {
      font-family: var(--mono);
      font-size: 1.25rem;
      color: var(--gold);
      letter-spacing: 0.05em;
      transition: color 0.18s;
    }
    .tel-num:hover { color: var(--gold-soft); }

    /* ─── Stats bar ───────────────────────────────────────────────── */
    .stats-bar {
      background: var(--panel);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 0;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .stat {
      padding: 1.75rem 1.5rem;
      text-align: center;
      border-right: 1px solid var(--border);
    }
    .stat:last-child { border-right: none; }
    .stat-val {
      font-family: var(--serif);
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 0.4rem;
    }
    .stat-lbl {
      font-family: var(--mono);
      font-size: 0.6rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* ─── About ───────────────────────────────────────────────────── */
    #about .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }
    .about-body p {
      color: var(--muted);
      margin-bottom: 1.25rem;
      line-height: 1.8;
    }
    .about-body p strong { color: var(--text); font-weight: 600; }
    .aside-cards { display: flex; flex-direction: column; gap: 1.25rem; }
    .info-card {
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 1.25rem 1.5rem;
    }
    .info-card .lbl {
      font-family: var(--mono);
      font-size: 0.6rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.4rem;
    }
    .info-card .val {
      font-size: 0.93rem;
      color: var(--text);
      line-height: 1.55;
    }

    /* ─── Fleet ───────────────────────────────────────────────────── */
    #fleet .fleet-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: var(--border);
      border: 1.5px solid var(--border);
      border-radius: var(--r);
      overflow: hidden;
    }
    .fc {
      background: var(--panel);
      padding: 2rem;
      overflow: hidden;
      transition: background 0.18s;
    }
    .fc:hover { background: #19203a; }
    .fc-ico { font-size: 2rem; margin-bottom: 1.25rem; display: block; }
    .vehicle-img {
      margin: -2rem -2rem 1.75rem;
      width: calc(100% + 4rem);
      height: 210px;
      background-image: var(--photo);
      background-size: cover;
      background-position: center;
      position: relative;
      flex-shrink: 0;
    }
    .vehicle-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(10,13,20,0.08) 0%,
        rgba(10,13,20,0.18) 50%,
        rgba(19,24,38,0.97) 100%
      );
    }
    .fc-name {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--text);
    }
    .fc-desc {
      font-size: 0.875rem;
      color: var(--muted);
      line-height: 1.65;
      margin-bottom: 1.25rem;
    }
    .fc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
    .tag {
      font-family: var(--mono);
      font-size: 0.57rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      border: 1px solid var(--border);
      border-radius: 2px;
      padding: 0.22rem 0.5rem;
    }

    /* ─── Occasions ───────────────────────────────────────────────── */
    #occasions .occ-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--r);
      overflow: hidden;
    }
    .occ {
      background: var(--panel);
      padding: 1.4rem 1.2rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      transition: background 0.18s;
    }
    .occ:hover { background: #19203a; }
    .occ-ico { font-size: 1.4rem; flex-shrink: 0; }
    .occ-name { font-size: 0.9rem; font-weight: 500; color: var(--text); }

    /* ─── Game Day ────────────────────────────────────────────────── */
    #gameday { background: var(--panel); }
    .gd-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .gd-features { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
    .gd-feat { display: flex; gap: 1rem; align-items: flex-start; }
    .feat-ico {
      width: 38px;
      height: 38px;
      background: rgba(201,162,75,0.1);
      border: 1px solid rgba(201,162,75,0.2);
      border-radius: var(--r);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .feat-txt strong {
      display: block;
      font-size: 0.95rem;
      color: var(--text);
      margin-bottom: 0.2rem;
      font-weight: 600;
    }
    .feat-txt span { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
    .gd-cta-box {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 2.5rem;
    }
    .gd-cta-box .eyebrow { margin-bottom: 0.85rem; }
    .gd-price-note {
      font-size: 0.875rem;
      color: var(--muted);
      margin: 1.25rem 0 1.75rem;
      padding: 1rem 1.1rem;
      background: rgba(201,162,75,0.05);
      border: 1px solid rgba(201,162,75,0.15);
      border-radius: var(--r);
      line-height: 1.65;
    }
    .gd-price-note strong { color: var(--gold-soft); }

    /* ─── Included ────────────────────────────────────────────────── */
    #included .inc-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .inc-item {
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 1.75rem;
      position: relative;
      overflow: hidden;
    }
    .inc-item::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
    }
    .inc-ico { font-size: 1.75rem; margin-bottom: 1rem; }
    .inc-title {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--text);
    }
    .inc-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

    /* ─── Policy / Booking info ───────────────────────────────────── */
    #booking { background: var(--panel); }
    .book-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    .policy-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      margin-top: 1.5rem;
    }
    .policy-list li {
      display: flex;
      gap: 0.75rem;
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.65;
    }
    .policy-list li::before {
      content: '—';
      color: var(--gold);
      flex-shrink: 0;
      font-family: var(--mono);
    }
    .pay-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
    .pay-badge {
      font-family: var(--mono);
      font-size: 0.63rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.5rem 1rem;
      border: 1px solid var(--border);
      border-radius: var(--r);
      color: var(--text);
    }

    /* ─── Testimonials ────────────────────────────────────────────── */
    #testimonials .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .tcard {
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: var(--r);
      padding: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .stars { color: var(--gold); font-size: 0.875rem; letter-spacing: 0.1em; }
    .tquote {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.75;
      flex: 1;
      position: relative;
    }
    .tquote::before {
      content: '\201C';
      font-family: var(--serif);
      font-size: 3rem;
      color: var(--gold);
      opacity: 0.28;
      line-height: 0;
      vertical-align: -0.8rem;
      margin-right: 0.1rem;
    }
    .tauthor { border-top: 1px solid var(--border); padding-top: 1rem; }
    .t-name {
      font-family: var(--mono);
      font-size: 0.66rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text);
    }
    .t-occ { font-size: 0.8rem; color: var(--muted); margin-top: 0.2rem; }
    .testi-note {
      margin-top: 2rem;
      font-family: var(--mono);
      font-size: 0.6rem;
      letter-spacing: 0.09em;
      color: var(--muted);
      opacity: 0.7;
      text-align: center;
    }

    /* ─── Service area ────────────────────────────────────────────── */
    #service-area .area-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-bottom: 3rem;
      align-items: start;
    }
    .cities {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.5rem;
    }
    .city {
      font-family: var(--mono);
      font-size: 0.62rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--muted);
      padding: 0.6rem 0.75rem;
      border: 1px solid var(--border);
      border-radius: var(--r);
      transition: border-color 0.18s, color 0.18s, background 0.18s;
      cursor: default;
    }
    .city:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(201,162,75,0.05);
    }

    /* ─── Contact CTA ─────────────────────────────────────────────── */
    #contact { background: var(--panel); }
    .cta-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .cta-h {
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 1.25rem;
    }
    .cta-h em { font-style: italic; color: var(--gold-soft); }
    .cta-sub {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 2rem;
    }
    .cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
    .cdetails { display: flex; flex-direction: column; gap: 1.5rem; }
    .cd-item { display: flex; gap: 1rem; align-items: flex-start; }
    .cd-ico {
      width: 40px;
      height: 40px;
      background: rgba(201,162,75,0.08);
      border: 1px solid rgba(201,162,75,0.2);
      border-radius: var(--r);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .cd-lbl {
      font-family: var(--mono);
      font-size: 0.6rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.3rem;
    }
    .cd-val { font-size: 0.93rem; color: var(--text); line-height: 1.55; }
    .cd-val a:hover { color: var(--gold); }

    /* ─── Social Gallery ─────────────────────────────────────────── */
    #social-gallery { background: var(--panel); }
    .sg-tabs {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }
    .sg-tab {
      font-family: var(--mono);
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.5rem 1.1rem;
      border-radius: var(--r);
      border: 1px solid var(--border);
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      transition: all 0.2s;
    }
    .sg-tab.active { border-color: var(--gold); color: var(--gold); background: rgba(201,162,75,0.08); }
    .sg-tab:hover:not(.active) { border-color: var(--text); color: var(--text); }
    .sg-panel { display: none; }
    .sg-panel.active { display: block; }
    .sg-track {
      display: flex;
      gap: 1.5rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    .sg-track::-webkit-scrollbar { display: none; }
    .sg-card {
      flex: 0 0 calc(50% - 0.75rem);
      scroll-snap-align: start;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--r);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: border-color 0.2s;
    }
    .sg-card:hover { border-color: rgba(201,162,75,0.4); }
    .sg-photo {
      height: 230px;
      background-size: cover;
      position: relative;
      flex-shrink: 0;
    }
    .sg-photo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 40%, rgba(10,13,20,0.85) 100%);
    }
    .sg-occasion-tag {
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      z-index: 1;
      font-family: var(--mono);
      font-size: 0.55rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      background: rgba(201,162,75,0.15);
      border: 1px solid rgba(201,162,75,0.4);
      color: var(--gold-soft);
      padding: 0.25rem 0.65rem;
      border-radius: 2px;
    }
    .sg-body {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      flex: 1;
    }
    .sg-quote {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.72;
      flex: 1;
      position: relative;
    }
    .sg-quote::before {
      content: '\201C';
      font-family: var(--serif);
      font-size: 2.2rem;
      color: var(--gold);
      opacity: 0.35;
      line-height: 0;
      vertical-align: -0.65rem;
      margin-right: 0.05rem;
    }
    .sg-meta {
      font-family: var(--mono);
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text);
    }
    .sg-nav {
      display: flex;
      justify-content: flex-end;
      gap: 0.5rem;
      margin-top: 1.25rem;
    }
    .sg-prev, .sg-next {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--muted);
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.18s;
    }
    .sg-prev:hover, .sg-next:hover { border-color: var(--gold); color: var(--gold); }

    /* ─── Footer ──────────────────────────────────────────────────── */
    footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 2.25rem 0;
    }
    .footer-inner {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .foot-logo { height: 80px; width: auto; display: block; margin-bottom: 0.5rem; filter: drop-shadow(0 2px 10px rgba(201,162,75,0.3)); }
    .foot-copy {
      font-family: var(--mono);
      font-size: 0.6rem;
      letter-spacing: 0.09em;
      color: var(--muted);
    }
    .foot-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
    .foot-links a {
      font-family: var(--mono);
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      transition: color 0.18s;
    }
    .foot-links a:hover { color: var(--text); }

    /* ─── Responsive ──────────────────────────────────────────────── */
    @media (max-width: 820px) {
      .nav-links, .nav-cta-wrap { display: none; }
      .nav-toggle { display: flex; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat:nth-child(2) { border-right: none; }
      .stat:nth-child(3) { border-top: 1px solid var(--border); }
      .stat:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
    }
    @media (max-width: 900px) {
      #about .about-grid,
      .gd-grid,
      .book-grid,
      #service-area .area-top,
      .cta-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      #fleet .fleet-grid { grid-template-columns: repeat(2, 1fr); }
      #occasions .occ-grid { grid-template-columns: repeat(2, 1fr); }

      #testimonials .testi-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 780px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-logo-col { display: none; }
      #hero { padding: 3.5rem 0 3rem; }
    }
    @media (max-width: 760px) {
      section { padding: 4rem 0; }
      #hero { padding: 3rem 0 2.5rem; }
      .hero-h1 { font-size: 2.6rem; }
      #fleet .fleet-grid { grid-template-columns: 1fr; }
      .cities { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      #occasions .occ-grid { grid-template-columns: 1fr; }
      #included .inc-grid { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
      .foot-logo { height: 64px; }
      .sg-card { flex: 0 0 85%; }
    }
    @media (max-width: 480px) {
      #hero { padding: 2rem 0 2rem; min-height: auto; }
      .hero-h1 { font-size: 2.1rem; }
      .hero-sub { font-size: 0.95rem; margin-bottom: 1.75rem; }
      .hero-tel { margin-top: 1.5rem; padding-top: 1.25rem; }
      .hero-actions { gap: 0.75rem; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .stat-val { font-size: 2rem; }
      section { padding: 3rem 0; }
    }
  

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.blog-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: border-color 0.2s; }
.blog-card:hover { border-color: rgba(201,162,75,0.4); }
.blog-thumb { height: 220px; background-size: cover; background-position: center; }
.blog-card-body { padding: 1.75rem; }
.blog-card-title { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; color: var(--text); margin: 0.5rem 0 1rem; line-height: 1.2; }
.blog-card-title a { color: inherit; transition: color 0.18s; }
.blog-card-title a:hover { color: var(--gold-soft); }
.blog-card-excerpt { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.post-hero { background: var(--panel); padding: 5rem 0 4rem; border-top: 1px solid var(--border); }
.post-body { max-width: 72ch; margin: 0 auto; font-size: 1.05rem; color: var(--muted); line-height: 1.8; }
.post-body h1, .post-body h2, .post-body h3 { font-family: var(--serif); color: var(--text); margin: 2rem 0 1rem; line-height: 1.1; }
.post-body p { margin-bottom: 1.25rem; }
.post-body a { color: var(--gold); }
.post-body a:hover { color: var(--gold-soft); }
.post-body img { max-width: 100%; border-radius: var(--r); margin: 1.5rem 0; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-body li { margin-bottom: 0.5rem; }
.post-body blockquote { border-left: 3px solid var(--gold); padding: 0.5rem 0 0.5rem 1.5rem; margin: 1.5rem 0; font-family: var(--serif); font-style: italic; color: var(--text); }
@media (max-width: 760px) { .blog-grid { grid-template-columns: 1fr; } .post-hero { padding: 3rem 0 2.5rem; } }
