﻿:root {
    --gold: #fbbd12;
    --gold-deep: #e7ab06;
    --gold-soft: #fff5d4;
    --ink: #111318;
    --ink-soft: #1a1a1a;
    --paper: #ffffff;
    --cream: #fdf9ed;
    --line: #e3e6ea;
    --muted: #5f6673;
    --text: #2a2a2a;
    --required: #c1121f;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }
  body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--text);
    background: var(--paper);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4 {
    font-family: 'Bricolage Grotesque', serif;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.15;
  }

  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  .container {
    width: 100%;
    padding: 0 5%;
  }

  /* ===== HEADER ===== */
  .header {
    background: var(--ink);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    gap: 32px;
  }
  .logo {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    font-family: 'Bricolage Grotesque', serif;
    font-weight: 700;
  }
  .logo .l1 {
    color: var(--gold);
    font-size: 17px;
    letter-spacing: 0.02em;
  }
  .logo .l2 {
    color: #fff;
    font-size: 22px;
    letter-spacing: -0.01em;
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .nav > a, .nav > .has-mega > a {
    color: #f3f3f3;
    font-size: 14.5px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    position: relative;
    cursor: pointer;
  }
  .nav > a:hover, .nav > .has-mega:hover > a {
    color: var(--gold);
  }
  .nav > a.active::after,
  .nav > .has-mega.active > a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
  }

  /* ===== MOBILE HAMBURGER & DRAWER ===== */
  .menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--gold);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s, border-color 0.2s;
  }
  .menu-toggle:hover {
    background: rgba(251,189,18,0.08);
    border-color: rgba(251,189,18,0.3);
  }
  .menu-toggle svg { width: 22px; height: 22px; }

  .drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .drawer-backdrop.open {
    opacity: 1;
    visibility: visible;
  }

  .mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 88vw);
    height: 100vh;
    background: #fff;
    z-index: 210;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 32px rgba(0,0,0,0.18);
  }
  .mobile-drawer.open { transform: translateX(0); }

  .drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: var(--ink);
    color: #fff;
    flex-shrink: 0;
  }
  .drawer-head .logo .l1 { font-size: 14px; }
  .drawer-head .logo .l2 { font-size: 17px; }
  .drawer-close {
    background: transparent;
    border: none;
    color: var(--gold);
    width: 36px;
    height: 36px;
    cursor: pointer;
    border-radius: 8px;
    display: grid;
    place-items: center;
    transition: background 0.2s;
  }
  .drawer-close:hover { background: rgba(251,189,18,0.12); }
  .drawer-close svg { width: 22px; height: 22px; }

  .drawer-nav {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0 28px;
  }
  .drawer-nav > a,
  .drawer-nav .acc-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 22px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 600;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: background 0.18s, color 0.18s, padding-left 0.18s;
  }
  .drawer-nav > a:hover,
  .drawer-nav .acc-toggle:hover {
    background: var(--cream);
    color: var(--gold-deep);
    padding-left: 28px;
  }
  .drawer-nav .acc-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s;
  }
  .drawer-nav .acc.open .acc-toggle svg { transform: rotate(180deg); }

  .acc-body {
    max-height: 0;
    overflow: hidden;
    background: var(--cream);
    transition: max-height 0.35s ease;
    border-bottom: 1px solid var(--line);
  }
  .acc.open .acc-body { max-height: 1200px; }

  .acc-group { padding: 4px 0; }
  .acc-group-title {
    padding: 14px 22px 8px;
    font-family: 'Bricolage Grotesque', serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-deep);
  }
  .acc-cities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 0;
    padding: 0 22px 12px;
  }
  .acc-cities a {
    padding: 8px 0;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    transition: color 0.15s, padding-left 0.15s;
  }
  .acc-cities a:hover {
    color: var(--gold-deep);
    padding-left: 4px;
  }

  .drawer-cta {
    padding: 22px;
    border-top: 1px solid var(--line);
    flex-shrink: 0;
  }
  .drawer-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    background: var(--gold);
    color: var(--ink);
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Bricolage Grotesque', serif;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.2s;
  }
  .drawer-cta a:hover { background: var(--gold-deep); transform: translateY(-1px); }
  .drawer-cta svg { width: 18px; height: 18px; }

  /* ===== HERO PHONE TAG ===== */
  .hero-phone {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    background: var(--gold);
    color: var(--ink);
    padding: 14px 36px 14px 50px;
    font-family: 'Bricolage Grotesque', serif;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    clip-path: polygon(28px 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: 0 8px 24px rgba(231,171,6,0.25);
    transition: transform 0.2s, padding 0.2s;
  }
  .hero-phone:hover {
    transform: translateX(-2px);
  }
  .hero-phone svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  /* ===== MEGA MENU ===== */
  .has-mega { position: static; }
  .mega {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    box-shadow: 0 24px 50px rgba(0,0,0,0.18);
    border-top: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 50;
  }
  .has-mega:hover .mega,
  .has-mega:focus-within .mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .mega-inner {
    padding: 36px 5% 40px;
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 48px;
  }
  .mega-header {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 6px;
  }
  .mega-title {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
  }
  .mega-sub {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  /* Mega content area â€” adapts based on state */
  .mega-content { display: grid; }
  .mega-content.cols-3 .mega-cities {
    grid-template-columns: repeat(3, 1fr);
  }
  .mega-content.has-feature {
    grid-template-columns: 1fr 280px;
    gap: 40px;
  }
  .mega-content.has-feature .mega-cities {
    grid-template-columns: repeat(2, 1fr);
  }

  .mega-cities {
    display: grid;
    gap: 4px 32px;
    align-content: start;
  }
  .mega-cities a {
    display: block;
    padding: 9px 0;
    color: #333;
    font-size: 14.5px;
    font-weight: 500;
    transition: color 0.18s, padding 0.18s;
    border-bottom: 1px dashed transparent;
  }
  .mega-cities a:hover {
    color: var(--gold-deep);
    padding-left: 6px;
    border-bottom-color: var(--gold);
  }

  /* Feature panel for short states */
  .mega-feature {
    background: linear-gradient(160deg, var(--cream) 0%, #fff 100%);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 22px;
    position: relative;
    overflow: hidden;
  }
  .mega-feature::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(251,189,18,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .feature-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
  }
  .feature-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 1;
  }
  .feature-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: padding 0.2s;
  }
  .feature-item:last-child { border-bottom: none; }
  .feature-item:hover { padding-left: 4px; }
  .feature-item .name {
    font-family: 'Bricolage Grotesque', serif;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--ink);
  }
  .feature-item .sub {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.02em;
  }
  .feature-item:hover .name { color: var(--gold-deep); }

  .mega-tabs {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-left: 1px solid var(--line);
    padding-left: 32px;
  }
  .mega-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ink);
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    background: transparent;
    border: none;
    text-align: left;
    width: 100%;
    font-family: inherit;
  }
  .mega-tab:hover { background: var(--cream); }
  .mega-tab.active {
    background: var(--gold-soft);
    color: var(--gold-deep);
  }
  .mega-tab svg { width: 14px; height: 14px; opacity: 0.5; }

  .mega-footnote {
    grid-column: 1 / -1;
    margin-top: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    color: var(--muted);
  }
  .mega-footnote strong { color: var(--ink); font-weight: 600; }
  .mega-cta {
    color: var(--gold-deep);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  /* ===== HERO ===== */
  .hero {
    background-color: #f7f1de;
    background-image: url('../images/banner_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: 36px 0 0;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,184,0,0.12) 0%, transparent 65%);
    pointer-events: none;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 48px;
    align-items: stretch;
    position: relative;
  }

  .quote-card {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 22%),
      radial-gradient(circle at 30% 20%, rgba(255,255,255,0.12) 0%, transparent 50%),
      var(--gold);
    border: 1px solid var(--gold-deep);
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(231,171,6,0.22);
    position: relative;
  }
  .quote-head {
    background: var(--ink);
    padding: 18px 26px;
    color: var(--gold);
    font-family: 'Bricolage Grotesque', serif;
    font-weight: 800;
    font-size: 19px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--gold-deep);
  }
  .quote-body { padding: 22px 26px 24px; }

  .form-row { margin-bottom: 12px; }
  /* CF7 wraps content in <p> â€” make that <p> the grid container */
  .form-row > p {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: 14px;
    margin: 0;
  }
  /* Hide the <br /> CF7 injects between label and input */
  .form-row > p > br { display: none; }
  .form-row label {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.01em;
  }
  .form-row label .req {
    color: var(--required);
    font-weight: 700;
    margin-left: 1px;
  }
  .form-row.top > p { align-items: start; }
  .form-row.top label { padding-top: 8px; }
  .form-row .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    min-width: 0;
  }
  .form-row input, .form-row textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 4px;
    background: rgba(255,255,255,0.6);
    font-size: 14px;
    font-family: inherit;
    color: var(--ink);
    transition: box-shadow 0.2s, background 0.2s, border-color 0.2s;
    box-sizing: border-box;
  }
  .form-row input::placeholder, .form-row textarea::placeholder {
    color: rgba(0,0,0,0.4);
  }
  .form-row input:focus, .form-row textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--ink);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
  }
  .form-row textarea {
    resize: vertical;
    min-height: 88px;
  }
  .form-foot > p {
    display: flex;
    justify-content: flex-end;
    margin: 0;
  }
  .form-foot { margin-top: 4px; }
  .submit-btn {
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 11px 26px;
    border-radius: 4px;
    font-family: 'Bricolage Grotesque', serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, background 0.2s;
  }
  .submit-btn:hover {
    transform: translateY(-1px);
    background: #000;
  }
  .submit-btn svg { width: 12px; height: 12px; }

  /* ===== HERO SLIDER ===== */
  .hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .slider {
    position: relative;
    flex: 1;
    min-height: 460px;
    border-radius: 12px;
    overflow: hidden;
  }
  .slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
  }
  .slide.active {
    opacity: 1;
    pointer-events: auto;
  }
  .slide-title {
    font-family: 'Bricolage Grotesque', serif;
    font-weight: 800;
    font-size: 30px;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    max-width: 540px;
    margin-bottom: 4px;
  }
  .slide-sub {
    font-size: 14px;
    color: var(--muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
  }
  .slide-visual {
    flex: 1;
    width: 100%;
    max-width: 580px;
    display: grid;
    place-items: center;
    position: relative;
  }
  .slide-visual svg {
    width: 100%;
    height: auto;
    max-height: 280px;
    filter: drop-shadow(0 25px 25px rgba(0,0,0,0.18));
  }

  /* slider controls */
  .slider-nav {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
  }
  .nav-dot {
    width: 36px;
    height: 4px;
    background: rgba(0,0,0,0.15);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    position: relative;
    transition: background 0.2s;
  }
  .nav-dot::after {
    content: '';
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    width: 0;
    background: var(--ink);
    border-radius: 2px;
  }
  .nav-dot.active::after {
    width: 100%;
    transition: width 5s linear;
  }
  .nav-dot:hover { background: rgba(0,0,0,0.25); }

  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, color 0.2s;
    z-index: 5;
    color: var(--ink);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .slider-arrow:hover {
    background: var(--ink);
    color: var(--gold);
  }
  .slider-arrow svg { width: 18px; height: 18px; }
  .slider-arrow.prev { left: 14px; }
  .slider-arrow.next { right: 14px; }
  .slider-arrow.prev:hover { transform: translateY(-50%) translateX(-2px); }
  .slider-arrow.next:hover { transform: translateY(-50%) translateX(2px); }

  /* fleet tabs below slider */
  .fleet-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 16px 0 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: 14px;
  }
  .fleet-tab {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 14px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s, border-color 0.2s;
    font-family: inherit;
  }
  .fleet-tab:hover { background: rgba(0,0,0,0.04); }
  .fleet-tab.active {
    background: #fff;
    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  }
  .fleet-tab .fleet-label {
    font-family: 'Bricolage Grotesque', serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
  }
  .fleet-tab .fleet-cap {
    font-size: 11.5px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .fleet-tab.active .fleet-label { color: var(--gold-deep); }

  /* ===== ABOUT SECTION ===== */
  .about {
    padding: 88px 0;
    background: var(--paper);
  }
  .section-label {
    display: inline-block;
    padding: 6px 14px;
    background: var(--ink);
    color: var(--gold);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .about h2 {
    font-size: 38px;
    margin-bottom: 22px;
    font-weight: 700;
  }
  .about p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 18px;
    line-height: 1.7;
  }
  .service-list {
    list-style: none;
    margin: 26px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--cream);
    border-radius: 10px;
    font-weight: 600;
    color: var(--ink);
    font-size: 14.5px;
    transition: background 0.2s, transform 0.2s;
  }
  .service-list li:hover {
    background: var(--gold-soft);
    transform: translateX(2px);
  }
  .service-list .dot {
    width: 28px; height: 28px;
    background: var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }
  .service-list .dot svg { width: 14px; height: 14px; color: var(--ink); }

  .commitments {
    list-style: none;
    margin-top: 24px;
  }
  .commitments li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-weight: 500;
    color: var(--text);
    font-size: 15px;
    border-bottom: 1px solid var(--line);
  }
  .commitments li:last-child { border-bottom: none; }
  .commitments .check {
    width: 22px; height: 22px;
    background: var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .commitments .check svg { width: 12px; height: 12px; color: var(--ink); }

  .cta-callout {
    margin-top: 28px;
    padding: 22px 26px;
    background: var(--ink);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .cta-callout p {
    color: #f3f3f3;
    margin: 0;
    font-size: 15px;
  }
  .cta-callout .num {
    color: var(--gold);
    font-weight: 700;
    font-size: 20px;
    font-family: 'Bricolage Grotesque', serif;
  }

  .about-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding-top: 20px;
  }
  .brand-logo {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 10px 24px rgba(0,0,0,0.12));
    transition: transform 0.35s ease;
  }
  .brand-logo:hover { transform: scale(1.03); }

  .nla-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 30px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
  }
  .nla-badge img {
    width: 140px;
    height: auto;
  }
  .nla-badge .nla-caption {
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--muted);
    text-transform: uppercase;
    font-weight: 600;
  }

  /* ===== SERVICES GRID ===== */
  .services {
    padding: 72px 0;
    background: var(--cream);
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .service-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--line);
  }
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }
  .service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.15) 100%);
  }
  .service-card .body {
    padding: 24px 24px 26px;
  }
  .service-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .service-card p {
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.65;
  }
  .service-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: var(--gold-deep);
    font-weight: 600;
    font-size: 14px;
  }

  .img-block-island { background-image: linear-gradient(135deg, #4a90c9, #6db5d8); }
  .img-hotel { background-image: linear-gradient(135deg, #c9b48a, #d4ad7b); }
  .img-brown { background-image: linear-gradient(135deg, #6b8e4e, #8db86b); }

  .img-block-island, .img-hotel, .img-brown {
    display: grid;
    place-items: center;
  }
  .service-img-icon {
    font-family: 'Bricolage Grotesque', serif;
    color: rgba(255,255,255,0.92);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    z-index: 1;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  }

  /* ===== TESTIMONIAL + VIDEO ===== */
  .testimonial {
    padding: 88px 0;
    background: var(--paper);
  }
  .test-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .video-wrap {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #2a2a2a, #0a0a0a);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    box-shadow: 0 14px 40px rgba(0,0,0,0.12);
  }
  .play-btn {
    width: 76px; height: 76px;
    background: var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.25s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .play-btn:hover { transform: scale(1.08); }
  .play-btn svg { width: 28px; height: 28px; color: var(--ink); margin-left: 4px; }
  .video-label {
    position: absolute;
    bottom: 18px; left: 18px;
    color: rgba(255,255,255,0.9);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  .testimonial h2 {
    font-size: 34px;
    margin-bottom: 28px;
  }
  .quote-block {
    background: var(--cream);
    padding: 32px;
    border-radius: 14px;
    position: relative;
  }
  .quote-block::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 22px;
    font-family: 'Bricolage Grotesque', serif;
    font-size: 100px;
    color: var(--gold);
    line-height: 1;
  }
  .quote-text {
    font-size: 17px;
    font-style: italic;
    color: var(--ink);
    line-height: 1.65;
    margin-bottom: 22px;
    padding-top: 8px;
  }
  .author {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .avatar {
    width: 48px; height: 48px;
    background: var(--gold);
    color: var(--ink);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'Bricolage Grotesque', serif;
    font-weight: 700;
    font-size: 18px;
  }
  .author-name {
    font-weight: 700;
    color: var(--ink);
    font-size: 15px;
  }
  .author-sub {
    color: var(--muted);
    font-size: 13px;
  }

  /* ===== FOOTER ===== */
  .footer {
    background: var(--ink);
    color: #d4d4d4;
    padding: 72px 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-col h4 {
    color: var(--gold);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .footer-col p, .footer-col a {
    font-size: 14px;
    color: #c0c0c0;
    line-height: 1.75;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--gold); }
  .footer-col p { margin-bottom: 8px; }
  .footer-col ul {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
    columns: 2;
    column-gap: 28px;
  }
  .footer-col ul li {
    padding: 4px 0;
    font-size: 13.5px;
  }
  .socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
  }
  .socials a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    display: grid;
    place-items: center;
    transition: background 0.2s;
  }
  .socials a:hover { background: var(--gold); }
  .socials svg { width: 16px; height: 16px; color: #f3f3f3; }
  .socials a:hover svg { color: var(--ink); }
  .footer-logo {
    font-family: 'Bricolage Grotesque', serif;
    line-height: 1.05;
    margin-bottom: 16px;
  }
  .footer-logo .l1 { color: var(--gold); font-size: 16px; font-weight: 700; }
  .footer-logo .l2 { color: #fff; font-size: 20px; font-weight: 700; display: block; }

  .footer-bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 13px;
    color: #999;
  }
  .footer-bottom a { color: #999; margin-left: 18px; }
  .footer-bottom a:hover { color: var(--gold); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .nav { display: none; }
    .menu-toggle { display: inline-flex; }
    .hero-inner {
      grid-template-columns: 1fr;
      gap: 32px;
      padding-top: 60px;
    }
    .hero-visual { order: -1; }
    .slider { min-height: 360px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .services-grid { grid-template-columns: 1fr; }
    .test-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .hero-phone {
      font-size: 18px;
      padding: 10px 24px 10px 38px;
    }
    .hero-phone svg { width: 16px; height: 16px; }
  }
  @media (max-width: 640px) {
    .hero-headline { font-size: 32px; }
    .about h2 { font-size: 28px; }
    .service-list { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .slide-title { font-size: 22px; }
    .slider { min-height: 320px; }
    .fleet-tabs { grid-template-columns: 1fr; }
    .form-row > p { grid-template-columns: 90px 1fr; gap: 10px; }
  }
/* ===== CONTACT FORM 7 INTEGRATION ===== */
/* These rules let CF7's auto-generated markup inherit our quote form styling. */

.quote-body .wpcf7-form p {
  margin: 0;
}
.quote-body .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.quote-body .wpcf7-form input[type="text"],
.quote-body .wpcf7-form input[type="email"],
.quote-body .wpcf7-form input[type="tel"],
.quote-body .wpcf7-form textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 4px;
  background: rgba(255,255,255,0.6);
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  transition: box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.quote-body .wpcf7-form input::placeholder,
.quote-body .wpcf7-form textarea::placeholder {
  color: rgba(0,0,0,0.4);
}
.quote-body .wpcf7-form input:focus,
.quote-body .wpcf7-form textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}
.quote-body .wpcf7-form textarea {
  resize: vertical;
  min-height: 78px;
}
.quote-body .wpcf7-form .wpcf7-submit {
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 11px 26px;
  border-radius: 4px;
  font-family: 'Bricolage Grotesque', serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.quote-body .wpcf7-form .wpcf7-submit:hover {
  transform: translateY(-1px);
  background: #000;
}

/* CF7 validation / response messages */
.quote-body .wpcf7-not-valid-tip {
  color: var(--required);
  font-size: 12px;
  margin-top: 4px;
  font-weight: 500;
}
.quote-body .wpcf7-response-output {
  margin: 14px 0 0 !important;
  padding: 10px 14px !important;
  border-radius: 6px !important;
  font-size: 13.5px !important;
  border: none !important;
  background: rgba(0,0,0,0.08);
  color: var(--ink);
}
.quote-body .wpcf7 form.sent .wpcf7-response-output {
  background: #d1e7dd;
  color: #0a3622;
}
.quote-body .wpcf7 form.invalid .wpcf7-response-output,
.quote-body .wpcf7 form.failed .wpcf7-response-output {
  background: #f8d7da;
  color: #58151c;
}

/* ===== GOOGLE PLACES AUTOCOMPLETE DROPDOWN ===== */
.pac-container {
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  margin-top: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  z-index: 9999;
}
.pac-item {
  padding: 10px 14px;
  cursor: pointer;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--text);
  transition: background 0.15s;
}
.pac-item:first-child { border-top: none; }
.pac-item:hover,
.pac-item-selected {
  background: var(--cream);
}
.pac-item-query {
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
}
.pac-matched { color: var(--gold-deep); }
.pac-icon { display: none; }

/* Empty-state message shown when a WP menu location has no items yet. */
.mega-empty,
.acc-empty {
  font-size: 13px;
  color: var(--muted);
  padding: 8px 0;
}

/* Real vehicle photos inside the hero slider */
.slide-visual img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 25px 25px rgba(0,0,0,0.18));
}

/* ===== STANDALONE QUOTE SECTION ===== */
.quote-standalone {
  padding: 72px 0;
  background: var(--cream);
}
.quote-standalone-inner {
  max-width: 640px;
  margin: 0 auto;
}

/* ===== BLOG POST FALLBACK IMAGE ===== */
.img-post-fallback {
  background: linear-gradient(135deg, #4a5568, #2d3748);
}

/* ===== TESTIMONIAL SLIDER ===== */
.test-slide {
  display: none;
  animation: testFadeIn 0.4s ease;
}
.test-slide.active {
  display: block;
}
@keyframes testFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.test-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.test-arr {
  width: 36px;
  height: 36px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  color: var(--ink);
  flex-shrink: 0;
}
.test-arr:hover {
  background: var(--ink);
  color: var(--gold);
  border-color: var(--ink);
}
.test-arr svg { width: 16px; height: 16px; }
.test-dots {
  display: flex;
  gap: 6px;
}
.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.test-dot.active {
  background: var(--gold);
  transform: scale(1.25);
}
.test-dot:hover { background: rgba(0,0,0,0.3); }

/* ===== PHOTO SLIDER [rachels_slider] ===== */
.pg-slider {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #111;
  height: 480px;
}
.pg-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.pg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.pg-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.pg-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pg-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 32px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, transparent 100%);
  line-height: 1.3;
  z-index: 1;
}
.pg-caption span {
  font-family: 'Bricolage Grotesque', serif;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.pg-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.pg-arr:hover { background: rgba(255,255,255,0.34); transform: translateY(-50%) scale(1.08); }
.pg-arr svg { width: 20px; height: 20px; }
.pg-prev { left: 16px; }
.pg-next { right: 16px; }
.pg-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.pg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.pg-dot.active {
  background: #fff;
  transform: scale(1.3);
}
@media (max-width: 640px) {
  .pg-slider { height: 260px; }
  .pg-arr { width: 36px; height: 36px; }
  .pg-arr svg { width: 16px; height: 16px; }
  .pg-prev { left: 10px; }
  .pg-next { right: 10px; }
}

/* ===== FAQ ACCORDION ===== */
.rachels-faqs {
  padding: 64px 0;
}
.rachels-faqs-inner {
  max-width: 800px;
  margin: 0;
  padding: 0;
}
.faqs-heading {
  font-size: clamp(24px, 4vw, 34px);
  font-family: 'Bricolage Grotesque', serif;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 36px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Bricolage Grotesque', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold-deep); }
.faq-q[aria-expanded="true"] { color: var(--gold-deep); }
.faq-q-text { flex: 1; }
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s ease;
}
.faq-icon svg { width: 18px; height: 18px; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-a {
  overflow: hidden;
}
.faq-a[hidden] { display: none; }
.faq-a-inner {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0,0,0,0.72);
}
.faq-a-inner p { margin: 0 0 12px; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner a { color: var(--gold-deep); text-decoration: underline; }

/* ===== LOCATION PAGE (single-car_service_area) ===== */

/* Hero banner */
.loc-hero {
  background-color: #f7f1de;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--line);
}
/* Give space for the phone tag which is position:absolute on the hero */
@media (min-width: 1025px) {
  .loc-hero .container { padding-right: 240px; }
}

/* Breadcrumbs */
.loc-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 18px;
}
.loc-breadcrumbs a {
  color: var(--link, #0d6efd);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}
.loc-breadcrumbs a:hover { color: var(--gold-deep); }
.loc-sep { color: rgba(0,0,0,0.25); font-size: 12px; }
.loc-current { color: var(--ink); font-weight: 600; }
.loc-home-icon {
  width: 14px; height: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

/* Hero title + subtitle */
.loc-title {
  font-family: 'Bricolage Grotesque', serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  max-width: 800px;
  line-height: 1.1;
  margin: 0;
}
.loc-subtitle {
  font-size: 16px;
  color: var(--muted);
  margin-top: 10px;
  max-width: 720px;
  line-height: 1.65;
}

/* Main content area */
.loc-main {
  padding: 56px 0 80px;
  background: var(--paper);
}
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  align-items: start;
}

/* Article (left column) */
.loc-article p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.75;
}
.loc-article a {
  color: var(--link, #0d6efd);
  text-decoration: underline;
  text-decoration-color: rgba(13,110,253,0.3);
  text-underline-offset: 3px;
  transition: color 0.15s, text-decoration-color 0.15s;
}
.loc-article a:hover {
  color: var(--gold-deep);
  text-decoration-color: var(--gold);
}
.loc-article h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 4px solid var(--gold);
  line-height: 1.3;
  font-family: 'Bricolage Grotesque', serif;
  color: var(--ink);
}
.loc-article h2:first-child { margin-top: 0; }
.loc-article h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--ink);
}

/* Bullet list with gold check */
.loc-article ul.bullets {
  list-style: none;
  margin: 18px 0 24px;
  padding: 0;
}
.loc-article ul.bullets li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 15.5px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.loc-article ul.bullets li:last-child { border-bottom: none; }
.loc-article ul.bullets li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}
/* Standard WP editor ul inside loc-article */
.loc-article ul:not(.bullets) {
  padding-left: 24px;
  margin: 12px 0 18px;
}
.loc-article ul:not(.bullets) li { margin-bottom: 6px; font-size: 15.5px; }

/* Card FAQ variant (.faq-list--card) */
.faq-list--card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: none;
  margin-top: 18px;
}
.faq-list--card .faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
  border-bottom: 1px solid var(--line); /* override generic */
}
.faq-list--card .faq-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
  border-radius: 0;
}
.faq-list--card .faq-item.open {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(251,189,18,0.12);
}
.faq-list--card .faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 16px 20px 16px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: background 0.15s;
}
.faq-list--card .faq-q:hover { background: var(--cream); color: var(--ink); }
.chev {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
  color: var(--ink);
  transition: transform 0.3s, background 0.2s;
  flex-shrink: 0;
}
.faq-list--card .faq-item.open .chev {
  transform: rotate(90deg);
  background: var(--gold);
}
.chev svg { width: 12px; height: 12px; }
.faq-list--card .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  display: block; /* override hidden-based generic */
}
.faq-list--card .faq-item.open .faq-a { max-height: 600px; }
.faq-list--card .faq-a-inner {
  padding: 0 24px 18px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}
.faq-foot {
  margin-top: 24px;
  padding-top: 18px;
  font-size: 15px;
  color: var(--muted);
  border-top: 1px dashed var(--line);
}
.faq-foot a {
  color: var(--link, #0d6efd);
  font-weight: 600;
  text-decoration: underline;
}

/* Sidebar */
.loc-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 104px;
}

/* Photo slider inside sidebar - 4:3, rounded, no arrows */
.loc-slider-wrap .pg-slider {
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
/* Caption moves to top-left, gradient dark-top */
.loc-slider-wrap .pg-caption {
  top: 0;
  bottom: auto;
  padding: 20px 22px 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.52) 0%, transparent 100%);
}
.loc-slider-wrap .pg-caption span {
  font-size: 18px;
  letter-spacing: -0.01em;
}
/* Gold active dot */
.loc-slider-wrap .pg-dot.active { background: var(--gold); }
/* No arrows in sidebar */
.loc-slider-wrap .pg-arr { display: none; }

/* Responsive */
@media (max-width: 1024px) {
  .loc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .loc-sidebar { position: static; }
  .loc-hero { padding-top: 64px; }
  .loc-title { font-size: 28px; }
  .loc-slider-wrap .pg-slider { aspect-ratio: 16 / 9; }
}
@media (max-width: 640px) {
  .loc-title { font-size: 24px; }
  .loc-article h2 { font-size: 20px; }
  .loc-article p,
  .loc-article ul.bullets li { font-size: 15px; }
}
