    :root {
      --forest: #1b3022;
      --forest-mid: #24382b;
      --forest-deep: #121c16;
      --gold: #c5a059;
      --gold-soft: #d4b46a;
      --cream: #f9f8f4;
      --paper: #ffffff;
      --ink: #1c1c1c;
      --muted: #5e5e5e;
      --line: rgba(27, 48, 34, 0.1);
      --radius: 4px;
      --header-h: 82px;
      --font-display: "Playfair Display", Georgia, serif;
      --font-body: "Outfit", system-ui, sans-serif;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      color: var(--ink);
      background: var(--cream);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }
    .sr-only {
      position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
    }
    .wrap { width: min(1180px, calc(100% - 2.5rem)); margin-inline: auto; }
    .wrap-wide { width: min(1240px, calc(100% - 2.5rem)); margin-inline: auto; }

    h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
    .gold-rule { width: 42px; height: 2px; background: var(--gold); margin: 0.85rem auto 0; }
    .gold-rule-left { margin-left: 0; }

    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
      min-height: 46px; padding: 0.75rem 1.35rem; border-radius: 4px;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
      border: 1px solid transparent; cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .btn-forest { background: var(--forest); color: #fff; }
    .btn-forest:hover { background: var(--forest-mid); }
    .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
    .btn-ghost-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
    .btn-ghost-dark:hover { background: var(--ink); color: #fff; }
    .text-link {
      color: var(--forest); font-weight: 600; font-size: 0.82rem;
      letter-spacing: 0.08em; text-transform: uppercase;
    }
    .text-link:hover { color: var(--gold); }
    .btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

    .site-header {
      position: relative; z-index: 40;
      background: #fff;
    }
    .top-bar {
      background: var(--forest-deep); color: #fff;
      font-size: 0.72rem; letter-spacing: 0.04em;
    }
    .top-bar-inner {
      width: min(1240px, calc(100% - 1.5rem));
      margin: 0 auto; min-height: 34px;
      display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    }
    .top-links { display: flex; gap: 1.1rem; flex-wrap: wrap; }
    .top-links a:hover { color: var(--gold); }

    .mid-header { background: #fff; border-bottom: 1px solid var(--line); }
    .mid-header-inner {
      width: min(1240px, calc(100% - 1.5rem));
      margin: 0 auto; min-height: 92px;
      display: grid; grid-template-columns: auto 1fr auto auto;
      align-items: center; gap: 1.25rem;
    }
    .brand { display: flex; align-items: center; gap: 0.7rem; color: var(--ink); }
    .brand img {
      width: 58px; height: 58px; object-fit: cover; object-position: 8% 50%;
      border-radius: 50%; background: #fff; border: 2px solid var(--gold);
    }
    .brand-text strong {
      display: block; font-size: 0.78rem; letter-spacing: 0.14em;
      text-transform: uppercase; font-weight: 700;
    }
    .brand-text small { display: none; }
    .mid-slogan {
      font-family: var(--font-display); font-style: italic; font-weight: 500;
      font-size: 1.15rem; color: var(--ink); justify-self: start;
    }
    .btn-quote {
      background: #fff; color: var(--forest);
      border: 2px solid var(--forest);
      min-height: 42px; padding: 0.55rem 1.1rem;
      white-space: nowrap;
    }
    .btn-quote:hover { background: var(--forest); color: #fff; }
    .mid-promo {
      display: flex; align-items: center; gap: 0.65rem;
      max-width: 280px; color: var(--ink);
    }
    .mid-promo img {
      width: 148px; height: 52px; object-fit: cover; border-radius: 4px;
    }
    .mid-promo span {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
      text-transform: uppercase; line-height: 1.3;
    }

    .nav-bar {
      background: var(--forest); color: #fff;
      position: sticky; top: 0; z-index: 46;
    }
    .nav-bar-inner {
      width: min(1240px, calc(100% - 1.5rem));
      margin: 0 auto; min-height: 48px;
      display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
    }
    .nav-main { display: flex; align-items: center; flex-wrap: wrap; gap: 0; }
    .nav-main > a, .nav-item > a {
      color: #fff; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; padding: 0.9rem 0.55rem; display: inline-block;
    }
    .nav-main > a[aria-current="page"],
    .nav-item > a[aria-current="page"] { background: var(--forest-mid); }
    .nav-item { position: relative; display: flex; align-items: stretch; }
    .nav-item > a::after { content: " ▾"; font-size: 0.62em; }
    .nav-drop {
      display: none; position: absolute; top: 100%; left: 0; min-width: 220px;
      background: #fff; color: var(--ink);
      box-shadow: 0 12px 28px rgba(0,0,0,0.16); padding: 0.4rem 0; z-index: 20;
    }
    .nav-drop a {
      display: block; padding: 0.55rem 1rem; font-size: 0.78rem;
      letter-spacing: 0.04em; text-transform: none; font-weight: 500;
    }
    .nav-drop a:hover { background: var(--cream); color: var(--forest); }
    .nav-item:hover .nav-drop, .nav-item:focus-within .nav-drop { display: block; }
    .nav-tools { display: flex; align-items: center; gap: 0.55rem; }

    .offer-bar {
      display: flex; align-items: stretch;
      background: #fff; border-bottom: 1px solid var(--line);
    }
    .offer-label {
      flex: 0 0 auto; background: var(--forest); color: #fff;
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; padding: 0.7rem 1.1rem;
      display: grid; place-items: center;
    }
    .offer-track {
      display: flex; align-items: center; gap: 1.35rem;
      overflow-x: auto; padding: 0.45rem 1rem;
      scrollbar-width: none;
    }
    .offer-track::-webkit-scrollbar { display: none; }
    .offer-track a {
      display: flex; align-items: center; gap: 0.5rem;
      white-space: nowrap; font-size: 0.82rem; font-weight: 600; color: var(--ink);
    }
    .offer-track img {
      width: 32px; height: 32px; border-radius: 50%; object-fit: cover;
    }
    .offer-track a:hover { color: var(--forest); }

    .header-tools { display: flex; align-items: center; gap: 0.75rem; color: #fff; }
    .fx-switch { display: flex; gap: 0.15rem; border: 1px solid rgba(255,255,255,0.28); border-radius: 4px; overflow: hidden; }
    .fx-btn {
      background: transparent; color: #fff; border: 0; cursor: pointer;
      min-height: 32px; padding: 0 0.55rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
    }
    .fx-btn.is-on { background: #fff; color: var(--forest); }
    .icon-wa {
      width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.35);
      display: grid; place-items: center; color: #fff;
    }
    .icon-wa:hover { border-color: var(--gold); color: var(--gold); }
    .nav-toggle {
      display: none; width: 42px; height: 42px; background: none; border: 0; cursor: pointer;
    }
    .nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--forest); margin: 5px auto; }

    .hero {
      position: relative;
      height: 620px;
      max-height: 620px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      overflow: hidden;
    }
    .hero-shade {
      position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background: rgba(8, 14, 12, 0.32);
    }
    .hero-slides { position: absolute; inset: 0; }
    .hero-slides img {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; object-position: center center;
      opacity: 0; transition: opacity 0.6s ease;
    }
    .hero-slides img.is-on { opacity: 1; }
    .hero-arrow {
      position: absolute; top: 50%; z-index: 5;
      width: 40px; height: 40px; margin-top: -20px; border-radius: 50%;
      border: 0; background: rgba(0,0,0,0.5); color: #fff;
      cursor: pointer; display: grid; place-items: center;
      font-size: 1.35rem; line-height: 1;
    }
    .hero-arrow:hover { background: #000; }
    .hero-arrow-prev { left: 20px; }
    .hero-arrow-next { right: 20px; }
    .hero-dots {
      position: absolute; z-index: 5; left: 50%; bottom: 30px;
      transform: translateX(-50%);
      display: flex; align-items: center; gap: 7px;
    }
    .hero-dot {
      width: 15px; height: 15px; padding: 0; border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.35); background: transparent;
      cursor: pointer;
    }
    .hero-dot.is-on { border-color: #fff; background: #fff; transform: scale(0.45); }

    .hero-copy {
      position: relative; z-index: 2;
      width: min(900px, calc(100% - 5.5rem));
      margin: 0 auto;
      padding: 0;
      text-align: center;
    }
    .hero h1 {
      margin: 0 auto; max-width: 18ch;
      font-family: var(--font-body);
      font-size: 61px; line-height: 1.08; font-weight: 700; letter-spacing: 0;
      text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
    }
    .hero-lead {
      margin: 0.55rem auto 0; max-width: 38ch;
      font-family: var(--font-body);
      font-size: 25px; font-weight: 300;
      color: rgba(255,255,255,0.95); line-height: 1.25;
      text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
    }
    .hero-credit {
      margin: 0.5rem auto 0; font-size: 0.62rem; letter-spacing: 0.04em;
      color: rgba(255,255,255,0.7);
    }
    .hero-credit a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
    @keyframes hero-rise {
      from { opacity: 0; transform: translateY(36px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero h1 { animation: hero-rise 2s cubic-bezier(0.42, 0, 0.58, 1) 0.34s both; }
    .hero-lead { animation: hero-rise 1.5s cubic-bezier(0.42, 0, 0.58, 1) 1.73s both; }

    .quote-bar {
      position: relative; z-index: 3;
      width: min(1180px, calc(100% - 2.5rem));
      margin: 0 auto 1.15rem;
      background: #fff; color: var(--ink);
      border-radius: 10px; padding: 0.9rem;
      box-shadow: 0 18px 40px rgba(0,0,0,0.22);
    }
    .quote-tabs { display: flex; gap: 0.4rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
    .quote-tab {
      border: 1px solid var(--line); background: #fff; color: var(--ink);
      min-height: 36px; padding: 0.4rem 0.95rem; border-radius: 999px;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; cursor: pointer;
    }
    .quote-tab.is-on { background: var(--forest); color: #fff; border-color: var(--forest); }
    .quote-fields {
      display: grid; grid-template-columns: 1fr 1.45fr 1.1fr 1.15fr auto;
      gap: 0.55rem; align-items: end;
    }
    .quote-fields label {
      display: grid; gap: 0.25rem; font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
    }
    .quote-fields input, .quote-fields select {
      border: 0; border-radius: 4px; padding: 0.75rem 0.8rem;
      color: var(--ink); background: #eef0ee; min-height: 48px; width: 100%;
    }
    .quote-fields input[type="date"] { color-scheme: light; cursor: pointer; }
    .quote-dates {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0.45rem;
    }
    .quote-fields .btn { white-space: nowrap; min-height: 48px; }
    .quote-actions { display: flex; flex-direction: column; gap: 0.4rem; align-items: stretch; }
    .quote-actions .btn { min-height: 48px; width: 100%; }

    .quote-band {
      position: relative;
      padding: 2.35rem 0 2.6rem;
      background: #14241c url("images/slider/slide-1-1920.jpg?v=veh") center 68% / cover no-repeat;
    }
    .quote-band::before {
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(6,16,12,0.22), rgba(6,16,12,0.4));
      pointer-events: none;
    }
    .quote-band .quote-bar {
      position: relative; z-index: 1;
      margin-bottom: 0;
    }

    .trust-bar {
      position: relative; z-index: 2;
      background: var(--forest-deep);
      color: #fff;
      border-top: 1px solid rgba(197, 160, 89, 0.22);
    }
    .trust-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 86px; }
    .trust-item {
      display: flex; align-items: center; justify-content: center; gap: 0.75rem;
      padding: 1rem 0.75rem; border-right: 1px solid rgba(255,255,255,0.08);
    }
    .trust-item:last-child { border-right: 0; }
    .trust-item svg { flex-shrink: 0; color: var(--gold); }
    .trust-item span {
      font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
      font-weight: 600; line-height: 1.35;
    }

    .section { padding: clamp(4rem, 8vw, 6rem) 0; }
    .section-head { text-align: center; margin-bottom: 2.5rem; }
    .section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }

    .cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
    .cat-card {
      position: relative; min-height: 440px; border-radius: 6px;
      overflow: hidden; display: flex; align-items: flex-end; color: #fff;
    }
    .cat-card img {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; transition: transform 0.5s ease;
    }
    .cat-card:hover img { transform: scale(1.06); }
    .cat-card::after {
      content: ""; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.05) 20%, rgba(0,20,14,0.82) 100%);
    }
    .cat-card-body {
      position: relative; z-index: 1; width: 100%; padding: 1.35rem 1.1rem 1.4rem;
      text-align: center;
    }
    .cat-icon {
      width: 54px; height: 54px; margin: 0 auto 0.85rem;
      border-radius: 50%; background: var(--forest); border: 2px solid var(--gold);
      display: grid; place-items: center; color: var(--gold);
    }
    .cat-card h3 {
      font-family: var(--font-body); font-size: 0.95rem; letter-spacing: 0.14em;
      text-transform: uppercase; font-weight: 700;
    }
    .cat-card p { margin-top: 0.3rem; font-size: 0.86rem; color: rgba(255,255,255,0.82); }

    .promise { background: var(--paper); }
    .promise-grid {
      display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem);
      align-items: center;
    }
    .eyebrow {
      color: var(--gold); font-size: 0.76rem; letter-spacing: 0.18em;
      text-transform: uppercase; font-weight: 700;
    }
    .promise h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 0.55rem; max-width: 14ch; }
    .promise h2 em { font-style: italic; color: var(--forest); }
    .promise-copy p { margin-top: 1rem; color: var(--muted); max-width: 46ch; }
    .promise-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.75rem; }
    .promise-stat { display: flex; gap: 0.65rem; align-items: flex-start; }
    .promise-stat svg { color: var(--gold); flex-shrink: 0; margin-top: 0.15rem; }
    .promise-stat strong { display: block; font-size: 0.92rem; }
    .promise-stat span { font-size: 0.78rem; color: var(--muted); }
    .promise-photo { position: relative; }
    .promise-photo img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius); }
    .promise-card {
      position: absolute; left: 1.1rem; bottom: 1.1rem;
      background: var(--forest); color: #fff; border: 1px solid var(--gold);
      padding: 1.15rem 1.25rem; max-width: 280px; border-radius: 6px;
    }
    .promise-card strong { display: block; letter-spacing: 0.12em; font-size: 0.78rem; color: var(--gold); }
    .promise-card p { margin: 0.4rem 0 0.7rem; font-size: 0.92rem; }
    .promise-card a { color: var(--gold-soft); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }

    .journeys-head {
      display: flex; justify-content: space-between; align-items: end;
      gap: 1rem; margin-bottom: 1.75rem;
    }
    .journeys-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.5rem); }
    .pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
    .pkg-card {
      background: #fff; border-radius: var(--radius); overflow: hidden;
      box-shadow: 0 10px 28px rgba(0,0,0,0.06); display: flex; flex-direction: column;
    }
    .pkg-media { position: relative; }
    .pkg-media img { width: 100%; height: 190px; object-fit: cover; }
    .info-card .card-photo {
      width: 100%; height: 168px; object-fit: cover; border-radius: 4px;
      margin: 0 0 0.85rem; display: block;
    }
    .road-gallery { position: relative; }
    .road-gallery-track {
      display: flex; gap: 0.75rem;
      overflow-x: auto; overscroll-behavior-x: contain;
      scroll-snap-type: x mandatory;
      scroll-padding-inline: 0;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .road-gallery-track::-webkit-scrollbar { display: none; }
    .road-gallery-slide {
      flex: 0 0 calc((100% - 1.5rem) / 3);
      scroll-snap-align: start;
      margin: 0;
    }
    .road-gallery-slide img {
      width: 100%; height: 340px; object-fit: cover; border-radius: 6px;
    }
    .road-gallery-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      z-index: 2; width: 42px; height: 42px; border-radius: 50%;
      border: 1px solid rgba(27, 48, 34, 0.18); background: rgba(255,255,255,0.94);
      color: var(--forest); cursor: pointer; display: grid; place-items: center;
      font-size: 1.35rem; line-height: 1; box-shadow: 0 6px 18px rgba(18, 28, 22, 0.12);
    }
    .road-gallery-btn:hover { border-color: var(--gold); color: var(--gold); }
    .road-gallery-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
    #road-prev { left: -0.35rem; }
    #road-next { right: -0.35rem; }
    .pkg-badge {
      position: absolute; top: 0.75rem; left: 0.75rem;
      background: var(--forest); color: #fff; font-size: 0.62rem;
      letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
      padding: 0.32rem 0.55rem; border-radius: 3px;
    }
    .pkg-body { padding: 1rem 1rem 1.15rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
    .pkg-meta { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
    .pkg-card h3 { font-size: 1.15rem; }
    .pkg-card p { font-size: 0.86rem; color: var(--muted); }
    .pkg-foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 0.7rem; }
    .stars { color: var(--gold); letter-spacing: 0.05em; font-size: 0.82rem; }
    .stars small { color: var(--muted); font-size: 0.72rem; margin-left: 0.25rem; }
    .pkg-price { font-weight: 700; font-size: 0.88rem; color: var(--forest); }

    .why {
      position: relative; color: #fff;
      background: #04120d url("images/gallery/gallery-07-green-van-gravel.jpg") center / cover no-repeat;
      padding: clamp(4.5rem, 9vw, 6.5rem) 0;
    }
    .why::before { content: ""; position: absolute; inset: 0; background: rgba(0, 18, 12, 0.78); }
    .why .wrap { position: relative; z-index: 1; }
    .why h2 { text-align: center; font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 2.5rem; }
    .why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
    .why-item { text-align: center; }
    .why-item svg { color: var(--gold); margin: 0 auto 0.9rem; }
    .why-item h3 {
      font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.14em;
      text-transform: uppercase; margin-bottom: 0.5rem;
    }
    .why-item p { font-size: 0.86rem; color: rgba(255,255,255,0.78); line-height: 1.55; }

    .reviews-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 1.75rem; gap: 1rem; }
    .reviews-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.5rem); }
    .rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
    .rev-card { background: #fff; border-radius: var(--radius); padding: 1.5rem 1.35rem 1.25rem; box-shadow: 0 10px 28px rgba(0,0,0,0.06); }
    .rev-card q { font-family: var(--font-display); font-size: 1.12rem; line-height: 1.45; quotes: none; display: block; margin-bottom: 0.85rem; }
    .rev-person { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.9rem; }
    .avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--forest); color: var(--gold); display: grid; place-items: center;
      font-size: 0.78rem; font-weight: 700;
    }
    .rev-person strong { display: block; font-size: 0.9rem; }
    .rev-person span { font-size: 0.78rem; color: var(--muted); }

    .final-cta {
      position: relative; color: #fff; text-align: center;
      background: #2a1208 url("images/slider/slide-3-1920.jpg") center 60% / cover no-repeat;
      padding: clamp(4.5rem, 9vw, 6.5rem) 0;
    }
    .final-cta::before {
      content: ""; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(42,18,8,0.45), rgba(20,10,4,0.72));
    }
    .final-cta .wrap { position: relative; z-index: 1; }
    .final-cta h2 { font-size: clamp(2rem, 4vw, 3rem); max-width: 16ch; margin: 0 auto; }
    .cta-steps { display: flex; justify-content: center; gap: clamp(1.5rem, 5vw, 3.5rem); margin: 2rem 0 1.75rem; flex-wrap: wrap; }
    .cta-step { max-width: 180px; }
    .cta-step svg { color: var(--gold); margin: 0 auto 0.55rem; }
    .cta-step strong { display: block; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; }
    .cta-actions { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }

    .contact { background: var(--paper); }
    .quote-embed .contact-form { max-width: 980px; margin: 0 auto; }
    .quote-embed .section-head { text-align: left; margin-bottom: 1.25rem; }
    .contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; }
    .contact-form { display: grid; gap: 0.85rem; position: relative; }
    .contact-form label { display: grid; gap: 0.3rem; font-size: 0.82rem; font-weight: 600; }
    .contact-form input, .contact-form select, .contact-form textarea {
      border: 1px solid var(--line); border-radius: 4px; padding: 0.7rem 0.8rem; background: #fff;
    }
    .contact-form input[type="date"] { color-scheme: light; min-height: 46px; cursor: pointer; }
    .date-range {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
    }
    .when-range {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
    }
    .journey-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem;
    }
    .journey-block {
      border: 0; padding: 0; min-width: 0;
    }
    .journey-block legend {
      font-family: var(--font-display); font-size: 1.35rem; color: var(--ink);
      margin-bottom: 0.85rem; padding: 0;
    }

    .quote-dialog {
      width: min(920px, calc(100% - 1.5rem));
      max-height: min(92vh, 820px);
      margin: auto;
      border: 0; padding: 0;
      background: var(--paper);
      color: var(--ink);
      border-radius: 12px;
      box-shadow: 0 24px 64px rgba(0,0,0,0.35);
    }
    .quote-dialog::backdrop { background: rgba(6, 16, 12, 0.72); }
    .quote-dialog-inner { padding: 1.15rem 1.35rem 1.5rem; overflow: auto; max-height: min(92vh, 820px); }
    .quote-dialog-top {
      display: flex; align-items: center; justify-content: space-between;
      gap: 1rem; margin-bottom: 1rem;
    }
    .quote-dialog-back, .quote-dialog-close {
      border: 0; background: none; cursor: pointer;
      font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--muted); padding: 0.35rem 0;
    }
    .quote-dialog-back:hover, .quote-dialog-close:hover { color: var(--forest); }
    .quote-dialog h2 {
      font-size: 1.7rem; margin-bottom: 1.1rem;
    }
    .quote-dialog .journey-grid { margin-bottom: 1rem; }
    .quote-dialog label {
      display: grid; gap: 0.28rem; font-size: 0.72rem; font-weight: 600;
      letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted);
      margin-bottom: 0.7rem;
    }
    .quote-dialog input, .quote-dialog select, .quote-dialog textarea {
      border: 1px solid var(--line); border-radius: 4px; padding: 0.7rem 0.8rem;
      background: #eef0ee; color: var(--ink); width: 100%; min-height: 46px;
    }
    .quote-dialog textarea { min-height: 72px; resize: vertical; }
    .quote-dialog input[type="date"], .quote-dialog input[type="time"] {
      color-scheme: light; cursor: pointer;
    }
    .quote-dialog .form-actions { display: flex; gap: 0.65rem; flex-wrap: wrap; margin-top: 0.4rem; }
    .quote-dialog .notice { margin-top: 0.75rem; font-size: 0.78rem; color: var(--muted); }

    .hire-terms { background: var(--paper); }
    .hire-terms-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem;
    }
    .hire-term {
      border: 1px solid var(--line); border-radius: 6px; padding: 1.15rem 1.1rem;
      background: var(--cream);
    }
    .hire-term h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
    .hire-term p { font-size: 0.9rem; color: var(--muted); }
    .type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
    .contact-aside { color: var(--muted); }
    .contact-aside h3 { font-size: 1.1rem; margin: 1rem 0 0.35rem; color: var(--ink); }
    .contact-aside a:hover { color: var(--gold); }

    .site-footer { background: var(--forest); color: rgba(255,255,255,0.86); padding: 3.5rem 0 0; }
    .footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr 1.2fr; gap: 1.5rem; }
    .footer-brand img { width: 160px; height: auto; background: #fff; border-radius: 8px; padding: 0.35rem; margin-bottom: 0.9rem; }
    .footer-brand p { font-size: 0.86rem; line-height: 1.55; }
    .footer-social { display: flex; gap: 0.9rem; margin-top: 0.9rem; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
    .footer-social a:hover { color: var(--gold); }
    .site-footer h2 {
      font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 0.85rem; font-weight: 700;
    }
    .site-footer ul { list-style: none; display: grid; gap: 0.4rem; font-size: 0.88rem; }
    .site-footer ul a:hover { color: var(--gold); }
    .footer-stay p { font-size: 0.88rem; margin-bottom: 0.35rem; }
    .footer-base {
      margin-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.08);
      padding: 1rem 0; display: flex; justify-content: space-between; gap: 1rem;
      font-size: 0.78rem; color: rgba(255,255,255,0.6); flex-wrap: wrap;
    }

    .mobile-nav { display: none; background: var(--forest-deep); padding: 0.5rem 1.25rem 1.25rem; }
    .mobile-nav a {
      display: block; color: #fff; padding: 0.7rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase;
    }
    .is-open .mobile-nav { display: block; }
    .mobile-nav .btn { margin-top: 1rem; width: 100%; }

    @media (max-width: 1024px) {
      .nav-bar, .offer-bar, .mid-slogan, .mid-promo { display: none; }
      .nav-toggle { display: block; }
      .mid-header-inner { grid-template-columns: 1fr auto auto; min-height: 72px; }
      .cat-grid, .pkg-grid { grid-template-columns: repeat(2, 1fr); }
      .road-gallery-slide { flex-basis: calc((100% - 0.75rem) / 2); }
      .road-gallery-slide img { height: 280px; }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .why-item:last-child { grid-column: span 2; }
      .promise-grid, .contact-grid, .footer-grid, .quote-fields, .journey-grid, .hire-terms-grid { grid-template-columns: 1fr 1fr; }
      .type-grid { grid-template-columns: 1fr 1fr; }
      .hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); line-height: 1.15; }
    }
    @media (max-width: 700px) {
      :root { --header-h: 64px; }
      body { overflow-x: hidden; }
      .wrap, .wrap-wide { width: calc(100% - 1.5rem); }
      .top-date { display: none; }
      .mid-header-inner { grid-template-columns: 1fr auto; min-height: 64px; gap: 0.5rem; }
      .btn-quote { display: none; }
      .brand { min-width: 0; gap: 0.45rem; }
      .brand-text small { display: none; }
      .brand-text strong {
        font-size: 0.62rem; letter-spacing: 0.08em;
        white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
      }
      .brand img { width: 40px; height: 40px; }
      .header-tools { gap: 0.25rem; }
      .site-header.is-open { height: auto; }

      .hero {
        height: 480px;
        max-height: 480px;
        min-height: 0;
        align-items: center;
        justify-content: center;
        padding: 0;
      }
      .hero-copy {
        width: calc(100% - 4.5rem);
        max-width: 36rem;
        margin: 0 auto;
        padding: 0;
        text-align: center;
      }
      .hero-credit { display: none; }
      .hero h1 {
        margin-top: 0;
        max-width: none;
        font-size: 36px;
        line-height: 1.2;
        letter-spacing: 0;
        animation: none;
      }
      .hero-lead {
        margin-top: 0.45rem;
        max-width: none;
        font-size: 18px;
        line-height: 1.3;
        font-weight: 300;
        animation: none;
      }
      .hero-arrow {
        width: 32px; height: 32px; margin-top: -16px; font-size: 1.1rem;
      }
      .hero-arrow-prev { left: 8px; }
      .hero-arrow-next { right: 8px; }
      .hero-dots { bottom: 10px; }

      .trust-bar-inner, .rev-grid, .cat-grid, .pkg-grid, .why-grid,
      .promise-grid, .contact-grid, .footer-grid, .quote-fields, .type-grid, .journey-grid, .hire-terms-grid, .when-range { grid-template-columns: 1fr; }
      .road-gallery-slide { flex-basis: 86%; }
      .road-gallery-slide img { height: 240px; }
      #road-prev { left: 0.35rem; }
      #road-next { right: 0.35rem; }
      .date-range, .quote-dates { grid-template-columns: 1fr; }
      .why-item:last-child { grid-column: auto; }
      .trust-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); justify-content: flex-start; padding: 0.85rem 0.25rem; }
      .quote-bar { width: calc(100% - 1.25rem); padding: 0.85rem; border-radius: 8px; }
      .quote-band { padding: 1.25rem 0 1.5rem; }
      .quote-tabs { gap: 0.3rem; }
      .quote-tab { font-size: 0.72rem; padding: 0.35rem 0.7rem; min-height: 34px; }
      .quote-fields .btn { width: 100%; }
      .quote-actions { flex-direction: row; }
      .quote-actions .btn { min-height: 44px; }
      .section { padding: 2.5rem 0; }
      .section-head { margin-bottom: 1.5rem; }
      .section-head h2 { font-size: 1.7rem; }
      .cat-card { min-height: 260px; }
      .page-banner {
        min-height: 0;
        padding: 2rem 0 1.6rem;
      }
      .page-banner h1 { font-size: 1.7rem; max-width: 18ch; line-height: 1.2; }
      .page-banner p { font-size: 0.95rem; }
      .split img { height: 220px; }
      .promise-photo img { height: 240px; }
      .journeys-head, .reviews-head { flex-direction: column; align-items: flex-start; }
      .cookie-bar { align-items: stretch; }
      .final-cta h2, .page-cta h2 { max-width: none; }
      .cta-actions { flex-direction: column; align-items: stretch; padding: 0 1rem; }
      .quote-dialog { width: calc(100% - 1rem); max-height: 96dvh; }
      .quote-dialog-inner { padding: 1rem; }
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .cat-card img, .hero-slides img { transition: none; }
      .hero h1, .hero-lead { animation: none; }
      .road-gallery-track { scroll-behavior: auto; }
    }

    .mobile-nav a[aria-current="page"] { color: var(--gold); }

    .page-banner {
      position: relative; color: #fff;
      min-height: 280px; display: flex; align-items: flex-end;
      padding: 3rem 0 2.5rem;
      background-color: var(--forest-deep);
      background-size: cover; background-position: center;
    }
    .page-banner::after {
      content: ""; position: absolute; inset: 0;
      background: linear-gradient(90deg, rgba(8,16,12,0.38) 0%, rgba(8,16,12,0.1) 48%, transparent 72%);
    }
    .page-banner .wrap { position: relative; z-index: 1; }
    .page-banner .eyebrow { color: var(--gold-soft); }
    .page-banner h1 {
      margin-top: 0.55rem; max-width: 16ch;
      font-size: clamp(2.3rem, 5.4vw, 3.8rem); font-weight: 500;
      text-shadow: 0 2px 16px rgba(0,0,0,0.4);
    }
    .page-banner h1 em { font-style: italic; color: var(--gold); }
    .page-banner p {
      margin-top: 0.85rem; max-width: 44ch; font-size: 1.05rem;
      color: rgba(255,255,255,0.94); text-shadow: 0 1px 10px rgba(0,0,0,0.35);
    }

    .split {
      display: grid; grid-template-columns: 1.05fr 0.95fr;
      gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start;
    }
    .split img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); }
    .prose p { margin-top: 1rem; color: var(--muted); max-width: 58ch; }
    .prose ul { margin: 0.85rem 0 0 1.2rem; color: var(--muted); display: grid; gap: 0.35rem; }
    .prose h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 0.35rem; }
    .stack { display: grid; gap: 1.1rem; }
    .info-card {
      background: #fff; border-radius: var(--radius); padding: 1.35rem 1.25rem;
      box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    }
    .info-card h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
    .info-card p { color: var(--muted); font-size: 0.95rem; }
    .rate-list { list-style: none; display: grid; gap: 0.65rem; margin-top: 1rem; }
    .rate-list li {
      display: flex; justify-content: space-between; gap: 1rem;
      padding: 0.75rem 0; border-bottom: 1px solid var(--line); font-size: 0.95rem;
    }
    .rate-list strong { color: var(--forest); }
    .page-cta {
      background: var(--forest); color: #fff; text-align: center;
      padding: clamp(3.5rem, 7vw, 5rem) 0;
    }
    .page-cta h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); max-width: 18ch; margin: 0 auto 1rem; }
    .page-cta p { color: rgba(255,255,255,0.82); max-width: 42ch; margin: 0 auto 1.5rem; }
    .page-cta .btn-forest { background: #fff; color: var(--forest); }
    .page-cta .btn-forest:hover { background: var(--gold); color: var(--forest-deep); }

    .legal { max-width: 760px; }
    .legal h2 { margin: 2rem 0 0.6rem; font-size: 1.45rem; }
    .legal h3 { margin: 1.25rem 0 0.4rem; font-size: 1.15rem; }
    .legal p, .legal li { color: var(--muted); }
    .legal ul, .legal ol { margin: 0.6rem 0 0 1.2rem; display: grid; gap: 0.35rem; }
    .legal .updated { font-size: 0.82rem; color: var(--muted); margin-top: 0.4rem; }
    .faq-list { display: grid; gap: 0.65rem; }
    .faq-list details {
      background: #fff; border-radius: var(--radius); padding: 0.95rem 1.1rem;
      border: 1px solid var(--line);
    }
    .faq-list summary { cursor: pointer; font-weight: 600; }
    .faq-list details p { margin-top: 0.65rem; color: var(--muted); }
    .notice {
      background: #fff; border-left: 3px solid var(--gold); padding: 1rem 1.15rem;
      color: var(--muted); margin: 1.25rem 0;
    }
    .id-block { font-size: 0.86rem; line-height: 1.55; color: rgba(255,255,255,0.78); margin-top: 0.75rem; }
    .cookie-bar {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
      background: var(--forest-deep); color: #fff;
      padding: 0.9rem 1.25rem; display: flex; gap: 1rem; align-items: center;
      justify-content: space-between; flex-wrap: wrap;
    }
    .cookie-bar[hidden] { display: none !important; }
    .legal a { color: var(--forest); text-decoration: underline; }
    .legal a:hover { color: var(--gold); }
    .table-wrap { overflow-x: auto; margin: 1.25rem 0; box-shadow: 0 10px 28px rgba(0,0,0,0.06); }
    .mobile-nav .fx-switch { display: flex; margin-top: 0.9rem; width: fit-content; }
    .type-grid a.info-card { color: inherit; display: block; }
    .type-grid a.info-card:hover h3 { color: var(--gold); }
    .pkg-card { color: inherit; }
    .pkg-body h3 a { color: inherit; text-decoration: none; }
    .pkg-body h3 a:hover { color: var(--forest); }
    a.pkg-card:hover .pkg-body h3 { color: var(--forest); }
    .activity-index {
      display: flex; flex-wrap: wrap; gap: 0.45rem;
      margin: 1rem 0 0;
    }
    .activity-index a {
      border: 1px solid var(--line); background: #fff;
      padding: 0.4rem 0.85rem; border-radius: 999px;
      font-size: 0.8rem; font-weight: 600;
    }
    .activity-index a:hover { border-color: var(--gold); color: var(--forest); }
    .activity-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: 1.5rem;
    }
    .activity-grid .info-card h3 { scroll-margin-top: calc(var(--header-h) + 1rem); }
    @media (max-width: 700px) {
      .activity-grid { grid-template-columns: 1fr; }
    }
    .cookie-bar p { font-size: 0.86rem; max-width: 70ch; color: rgba(255,255,255,0.88); }
    .cookie-bar a { color: var(--gold-soft); text-decoration: underline; }
    .form-honey { position: absolute; left: -9999px; height: 0; overflow: hidden; display: none; }
    table.rate-table { width: 100%; border-collapse: collapse; background: #fff; font-size: 0.92rem; }
    table.rate-table th, table.rate-table td {
      text-align: left; padding: 0.75rem 0.8rem; border-bottom: 1px solid var(--line); vertical-align: top;
    }
    table.rate-table th { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
    .form-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; align-items: center; }
    .spec-list {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0.45rem 1rem;
      list-style: none; padding: 0; margin: 1.1rem 0 1.25rem;
    }
    .spec-list li {
      background: var(--cream, #f6f1e8); border: 1px solid var(--line);
      padding: 0.55rem 0.75rem; font-size: 0.88rem; color: var(--muted);
    }
    .spec-list strong { display: block; color: var(--forest); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.15rem; }
    .pkg-spec { color: var(--muted); font-size: 0.78rem; font-weight: 600; }
    .enquiry-wrap { max-width: 640px; }
    .enquiry-form { background: #fff; padding: 1.35rem 1.4rem; border: 1px solid var(--line); border-radius: var(--radius); }
    .reply-promise { font-size: 0.92rem; color: var(--muted); margin: 0.35rem 0 0; }
    .map-frame { width: 100%; height: 280px; border: 0; border-radius: 6px; margin: 1rem 0; }
    @media (max-width: 700px) { .spec-list { grid-template-columns: 1fr; } }

    @media (max-width: 1024px) {
      .split { grid-template-columns: 1fr; }
      .split img { height: 320px; }
      .header-tools .fx-switch { display: none; }
    }
