    :root {
      --bg: #ffffff;
      --bg-elevated: #f8faf9;
      --surface: #ffffff;
      --border: rgba(15, 40, 30, 0.12);
      --text: #0f1f18;
      --muted: #4a5c54;
      --accent: #0d8f5b;
      --accent-dim: #067a4d;
      --gold: #9a7b16;
      --radius: 14px;
      --radius-sm: 10px;
      --font-sans: "Instrument Sans", system-ui, sans-serif;
      --font-display: "Fraunces", Georgia, serif;
      --shadow: 0 20px 50px rgba(15, 31, 24, 0.08);
      --header-h: 84px;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font-sans);
      font-size: 1rem;
      line-height: 1.55;
      color: var(--text);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
    }
    body.nav-open { overflow: hidden; }

    img { max-width: 100%; height: auto; display: block; }
    a { color: var(--accent); text-decoration: none; }
    a:hover { text-decoration: underline; }

    .skip {
      position: absolute;
      left: -9999px;
      top: 0;
      padding: 0.75rem 1rem;
      background: var(--accent);
      color: var(--bg);
      z-index: 9999;
    }
    .skip:focus { left: 0; color: #fff; }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      min-height: var(--header-h);
      display: flex;
      align-items: center;
      border-bottom: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
    }
    .header-inner {
      width: 100%;
      max-width: 1120px;
      margin: 0 auto;
      padding: 0.65rem 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
    }
    .logo {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      line-height: 0;
      margin-right: auto;
    }
    .logo img {
      height: 54px;
      width: auto;
      max-width: min(280px, 58vw);
      object-fit: contain;
      object-position: left center;
    }
    @media (min-width: 880px) {
      .logo { margin-right: 0; }
      .logo img { height: 64px; max-width: 320px; }
    }
    .nav-main {
      display: none;
      align-items: center;
      gap: 1.75rem;
    }
    .nav-main a {
      color: var(--muted);
      font-weight: 500;
      font-size: 0.9375rem;
      text-decoration: none;
    }
    .nav-main a:hover { color: var(--accent); }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .icon-btn {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: var(--surface);
      color: var(--text);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 0;
    }
    .icon-btn:hover { border-color: rgba(13, 143, 91, 0.35); background: var(--bg-elevated); }
    .icon-btn svg { width: 22px; height: 22px; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.7rem 1.2rem;
      font-family: inherit;
      font-weight: 600;
      font-size: 0.9375rem;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }
    .btn:active { transform: scale(0.98); }
    .btn-primary {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dim) 100%);
      color: #fff;
      box-shadow: 0 8px 28px rgba(13, 143, 91, 0.22);
    }
    .btn-primary:hover { box-shadow: 0 10px 32px rgba(13, 143, 91, 0.3); text-decoration: none; }
    .btn-ghost {
      background: transparent;
      color: var(--text);
      border: 1px solid var(--border);
    }
    .btn-ghost:hover { border-color: var(--muted); text-decoration: none; }
    .btn-block { width: 100%; }

    .nav-drawer {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(15, 31, 24, 0.45);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }
    .nav-drawer.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    .nav-drawer-panel {
      position: absolute;
      top: 0;
      right: 0;
      width: min(320px, 88vw);
      height: 100%;
      background: var(--bg);
      border-left: 1px solid var(--border);
      padding: 1.25rem;
      box-shadow: -8px 0 40px rgba(15, 31, 24, 0.08);
      transform: translateX(100%);
      transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .nav-drawer.open .nav-drawer-panel { transform: translateX(0); }
    .nav-drawer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 0.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border);
    }
    .nav-drawer-title {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 1.25rem;
      color: var(--text);
    }
    .drawer-close {
      flex-shrink: 0;
    }
    .nav-drawer a {
      display: block;
      padding: 0.85rem 0;
      color: var(--text);
      font-weight: 600;
      border-bottom: 1px solid var(--border);
      text-decoration: none;
    }
    .nav-drawer a:hover { color: var(--accent); }

    .menu-toggle {
      position: relative;
      z-index: 1;
    }
    .hide-mobile { display: none; }
    @media (min-width: 880px) {
      .nav-main { display: flex; }
      .menu-toggle { display: none; }
      .hide-mobile { display: inline-flex; }
    }

    /* Layout */
    .wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; }
    section { padding: 3.5rem 0; }
    @media (min-width: 768px) { section { padding: 4.5rem 0; } }

    .eyebrow {
      font-size: 0.8125rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
      margin: 0 0 0.75rem;
    }
    h1, h2, h3 {
      font-family: var(--font-display);
      font-weight: 600;
      line-height: 1.15;
      margin: 0 0 1rem;
    }
    h1 { font-size: clamp(2rem, 5vw, 2.85rem); }
    h2 { font-size: clamp(1.65rem, 3.5vw, 2.1rem); }
    h3 { font-size: 1.15rem; }
    .lead { color: var(--muted); font-size: 1.0625rem; max-width: 36rem; margin: 0 0 1.75rem; }

    /* Hero */
    .hero {
      position: relative;
      overflow: hidden;
      padding: 2.5rem 0 3rem;
      border-bottom: 1px solid var(--border);
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 55% at 85% 0%, rgba(13, 143, 91, 0.09), transparent),
        radial-gradient(ellipse 55% 45% at 0% 100%, rgba(154, 123, 22, 0.06), transparent);
      pointer-events: none;
    }
    .hero-grid {
      position: relative;
      display: grid;
      gap: 2.5rem;
      align-items: center;
    }
    @media (min-width: 900px) {
      .hero-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    }
    .hero-visual {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      aspect-ratio: 600 / 494;
      background: var(--surface);
    }
    .hero-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem 1.5rem;
      font-size: 0.875rem;
      color: var(--muted);
    }
    .trust-row span { display: flex; align-items: center; gap: 0.4rem; }
    .trust-row svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

    /* Fleet */
    #cars .section-head { text-align: center; max-width: 40rem; margin: 0 auto 2rem; }
    #cars .section-head .lead { margin-left: auto; margin-right: auto; }
    .fleet-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    @media (min-width: 700px) {
      .fleet-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
    }
    .fleet-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      cursor: pointer;
      text-align: left;
      padding: 0;
      font: inherit;
      color: inherit;
      transition: border-color 0.2s, transform 0.2s;
    }
    .fleet-card:hover, .fleet-card:focus-visible {
      border-color: rgba(13, 143, 91, 0.45);
      transform: translateY(-2px);
      outline: none;
    }
    .fleet-card img {
      width: 100%;
      aspect-ratio: 400 / 243;
      object-fit: cover;
    }
    .fleet-card .meta { padding: 0.85rem 1rem 1rem; }
    .fleet-card h3 { margin: 0; font-size: 0.95rem; font-family: var(--font-sans); font-weight: 700; }
    .fleet-card .tap { font-size: 0.75rem; color: var(--accent); margin-top: 0.35rem; }

    /* Features */
    .features-layout {
      display: grid;
      gap: 2.5rem;
      align-items: start;
    }
    @media (min-width: 880px) {
      .features-layout { grid-template-columns: 1fr 1.1fr; align-items: center; }
    }
    .features-img {
      border-radius: var(--radius);
      border: 1px solid var(--border);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .feature-grid {
      display: grid;
      gap: 0.85rem;
    }
    @media (min-width: 520px) {
      .feature-grid { grid-template-columns: 1fr 1fr; }
    }
    .feature-card {
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 1rem 1.1rem;
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    }
    .feature-card h3 { font-size: 0.95rem; margin: 0 0 0.4rem; font-family: var(--font-sans); font-weight: 700; }
    .feature-card p { margin: 0; font-size: 0.875rem; color: var(--muted); }
    .feature-card .alt { font-size: 0.8rem; color: var(--gold); margin-top: 0.5rem; font-style: italic; }

    /* Rental / tours */
    .rental-banner {
      background: linear-gradient(145deg, #f3f7f5 0%, #eef5f1 100%);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem 1.5rem;
      text-align: center;
    }
    .rental-pills {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem;
      margin: 1.5rem 0;
    }
    .pill {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.65rem 1rem;
      background: var(--bg);
      border-radius: 999px;
      border: 1px solid var(--border);
      font-size: 0.9rem;
      font-weight: 600;
    }
    .pill svg { width: 18px; height: 18px; color: var(--accent); }

    .tours-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }
    @media (min-width: 640px) {
      .tours-grid { grid-template-columns: repeat(3, 1fr); }
    }
    .tour-card {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--surface);
    }
    .tour-card img { aspect-ratio: 303 / 203; object-fit: cover; width: 100%; }
    .tour-card .meta { padding: 1rem; }
    .tour-card h3 { margin: 0; font-size: 1rem; font-family: var(--font-sans); font-weight: 700; }

    /* Contact */
    #contactus {
      background: linear-gradient(180deg, var(--bg-elevated) 0%, #eef3f0 100%);
      /* Space so the fixed WhatsApp bubble does not cover the Send button */
      padding-bottom: 6rem;
    }
    .contact-grid {
      display: grid;
      gap: 2rem;
    }
    @media (min-width: 880px) {
      .contact-grid { grid-template-columns: 1fr 1.1fr; align-items: start; }
    }
    .form-panel {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem;
    }
    .form-panel h2 { margin-bottom: 0.5rem; }
    .form-note { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.25rem; }
    /* Sit above fixed .fab (z-index 90) so taps hit Submit, not WhatsApp */
    .form-panel .btn-primary.btn-block {
      position: relative;
      z-index: 120;
    }

    label { display: block; font-size: 0.8125rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--muted); }
    input, textarea, select {
      width: 100%;
      padding: 0.75rem 0.9rem;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      background: var(--bg);
      color: var(--text);
      font-family: inherit;
      font-size: 1rem;
      margin-bottom: 1rem;
    }
    input:focus, textarea:focus, select:focus {
      outline: 2px solid rgba(13, 143, 91, 0.35);
      outline-offset: 1px;
    }
    textarea { min-height: 120px; resize: vertical; }
    .field-row-2 {
      display: grid;
      gap: 0 1rem;
    }
    @media (min-width: 520px) {
      .field-row-2 { grid-template-columns: 1fr 1fr; }
    }

    /* Vehicle picker: desktop grid + mobile fallback select */
    .vehicle-picks { display: none !important; }
    .vehicle-pick {
      border: 1px solid var(--border);
      background: var(--bg);
      border-radius: 12px;
      padding: 0.65rem;
      text-align: left;
      cursor: pointer;
      transition: transform 0.12s ease, border-color 0.12s ease;
    }
    .vehicle-pick:hover, .vehicle-pick:focus-visible {
      border-color: rgba(13, 143, 91, 0.5);
      transform: translateY(-1px);
      outline: none;
    }
    .vehicle-pick.selected {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(13, 143, 91, 0.18);
    }
    .vehicle-pick img {
      width: 100%;
      height: 84px;
      object-fit: contain;
      border-radius: 10px;
      border: 1px solid var(--border);
      display: block;
      background: var(--bg-elevated);
      margin-bottom: 0.55rem;
    }
    .vehicle-pick .t { display: block; font-size: 0.85rem; font-weight: 800; }
    @media (min-width: 880px) {
      .vehicle-picks {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
        margin-bottom: 1rem;
      }
      .vehicle-select { display: none !important; }
    }

    .chat-panel {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem;
      background: var(--bg-elevated);
    }
    .chat-panel h2 { margin-bottom: 1rem; }
    .fb-link {
      display: inline-block;
      margin-top: 0.5rem;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
    }
    .fb-link img { display: block; }

    /* Footer */
    footer {
      padding: 2rem 0 4.5rem;
      border-top: 1px solid var(--border);
      text-align: center;
      color: var(--muted);
      font-size: 0.875rem;
    }
    footer .logo { justify-content: center; margin-bottom: 1rem; }
    footer .logo img { height: 52px; max-width: 280px; }
    @media (min-width: 880px) {
      footer .logo img { height: 58px; max-width: 300px; }
    }

    /* Modal */
    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 300;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(6px);
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding: 1rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s;
    }
    .modal-overlay.open { opacity: 1; pointer-events: auto; }
    .modal {
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: var(--radius) var(--radius) 0 0;
      width: 100%;
      max-width: 480px;
      max-height: 90vh;
      overflow-y: auto;
      padding: 1.5rem;
      transform: translateY(20px);
      transition: transform 0.25s ease;
    }
    .modal-overlay.open .modal { transform: translateY(0); }
    @media (min-width: 520px) {
      .modal-overlay { align-items: center; }
      .modal { border-radius: var(--radius); }
    }
    .modal-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
    .modal-head h2 { margin: 0; font-size: 1.35rem; }
    .modal-close {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      border: 1px solid var(--border);
      background: var(--surface);
      color: var(--text);
      cursor: pointer;
      font-size: 1.25rem;
      line-height: 1;
    }
    .specs { font-size: 0.9rem; color: var(--muted); margin: 0 0 1rem; padding-left: 1.1rem; }
    .modal .sub { font-size: 0.9rem; color: var(--muted); margin: 0 0 1rem; }

    /* FAB WhatsApp */
    .fab {
      position: fixed;
      bottom: 1.25rem;
      right: 1.25rem;
      z-index: 80;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25d366;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 35px rgba(37, 211, 102, 0.45);
      transition: transform 0.2s;
    }
    .fab:hover { transform: scale(1.06); text-decoration: none; }
    .fab svg { width: 30px; height: 30px; }

    .toast {
      position: fixed;
      bottom: 5.5rem;
      left: 50%;
      transform: translateX(-50%) translateY(20px);
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 0.85rem 1.25rem;
      border-radius: 999px;
      font-size: 0.875rem;
      font-weight: 600;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s, transform 0.25s;
      z-index: 400;
      max-width: 90vw;
      text-align: center;
    }
    .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

    .logo-text {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 1.15rem;
      color: var(--text);
    }
    .form-thanks { color: var(--accent); font-weight: 600; margin-bottom: 1rem; }
    .form-error { color: #b42318; font-weight: 600; margin-bottom: 1rem; }

    .breadcrumb { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; }
    .breadcrumb a { color: var(--accent); }
    .tour-page { padding: 2rem 0 4rem; max-width: 760px; }
    .tour-hero-fig { margin: 0 0 1.5rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
    .tour-hero-fig img { width: 100%; height: auto; display: block; }
    .tour-header h1 { margin-bottom: 0.5rem; }
    .tour-meta { color: var(--muted); font-size: 0.9rem; margin: 0 0 1rem; }
    .tour-excerpt { font-size: 1.05rem; color: var(--muted); }
    .tour-body.prose { font-size: 1.05rem; line-height: 1.65; }
    .tour-body.prose h2, .tour-body.prose h3 { margin-top: 1.75rem; }
    .tour-body.prose img { max-width: 100%; height: auto; border-radius: var(--radius-sm); }
    .tour-back { margin-top: 2.5rem; }
