@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap');

  :root {
    --teal:       #0F4C5C;
    --teal-dark:  #0a3a47;
    --teal-light: #1a6070;
    --champagne:  #E6D8C3;
    --ivory:      #F6F1E9;
    --ivory-dark: #EDE7DC;
    --warm-grey:  #8E8D8A;
    --warm-grey-light: #c4c3bf;
    --gold:       #C6A75E;
    --gold-light: #d4bc80;
    --gold-dim:   #a08845;
    --ink:        #1a1a1a;
    --ink-mid:    #3a3a3a;
    --serif:      'Montserrat', Arial, sans-serif;
    --sans:       'Montserrat', Arial, sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--ivory);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 80px;
    background: rgba(246,241,233,0.0);
    transition: background 0.4s, box-shadow 0.4s;
  }
  nav.scrolled {
    background: rgba(246,241,233,0.97);
    box-shadow: 0 1px 0 rgba(198,167,94,0.2);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }

  .nav-logo {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--teal);
    letter-spacing: 0.05em;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
  }
  .nav-logo .logo-main { font-weight: 600; letter-spacing: 0.08em; }
  .nav-logo .logo-sub  { font-style: italic; font-weight: 300; color: var(--gold); font-size: 1.1rem; }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mid);
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 100%;
    height: 1px;
    background: var(--gold);
    transition: right 0.3s ease;
  }
  .nav-links a:hover::after, .nav-links a.active::after { right: 0; }
  .nav-links a:hover, .nav-links a.active { color: var(--teal); }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .nav-lang {
    display: flex;
    gap: 0.3rem;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }
  .lang-btn {
    background: none;
    border: 1px solid var(--champagne);
    color: var(--warm-grey);
    padding: 4px 9px;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    transition: all 0.3s;
    border-radius: 2px;
  }
  .lang-btn.active, .lang-btn:hover {
    background: var(--teal);
    color: var(--ivory);
    border-color: var(--teal);
  }

  /* ── MOBILE MENU ── */
  .nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--teal);
    transition: all 0.3s;
  }

  /* ── PAGE TRANSITIONS ── */
  @keyframes pageFade {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--teal);
  }

  .hero-bg-pattern {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background:
      radial-gradient(ellipse at 10% 80%, rgba(198,167,94,0.12) 0%, transparent 55%),
      radial-gradient(ellipse at 90% 20%, rgba(198,167,94,0.07) 0%, transparent 45%),
      radial-gradient(ellipse at 50% 50%, rgba(15,76,92,0.0) 0%, rgba(10,58,71,0.4) 100%);
  }

  /* Elegant corner lines */
  .hero-corners::before,
  .hero-corners::after {
    content: '';
    position: absolute;
    width: 80px; height: 80px;
    pointer-events: none;
  }
  .hero-corners::before {
    top: 60px; left: 5%;
    border-top: 1px solid rgba(198,167,94,0.35);
    border-left: 1px solid rgba(198,167,94,0.35);
  }
  .hero-corners::after {
    bottom: 60px; right: 5%;
    border-bottom: 1px solid rgba(198,167,94,0.35);
    border-right: 1px solid rgba(198,167,94,0.35);
  }

  /* Vertical accent lines */
  .hero-line-left {
    position: absolute;
    top: 15%; left: 6%;
    width: 1px; height: 55%;
    background: linear-gradient(to bottom, transparent, rgba(198,167,94,0.4), transparent);
  }
  .hero-line-right {
    position: absolute;
    top: 20%; right: 8%;
    width: 1px; height: 50%;
    background: linear-gradient(to bottom, transparent, rgba(198,167,94,0.25), transparent);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    animation: heroFade 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
  @keyframes heroFade {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
  }
  .hero-eyebrow-line {
    width: 50px; height: 1px;
    background: rgba(198,167,94,0.5);
  }
  .hero-eyebrow-text {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: var(--sans);
    font-weight: 300;
  }

  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(3.8rem, 8.5vw, 7.5rem);
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: 0.01em;
    color: var(--ivory);
    margin-bottom: 0;
  }
  .hero h1 .italic-line {
    font-style: italic;
    color: var(--gold-light);
    display: block;
    font-weight: 300;
  }

  .hero-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.8rem 0;
    color: rgba(198,167,94,0.5);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
  }
  .hero-ornament::before, .hero-ornament::after {
    content: '';
    width: 60px; height: 1px;
    background: rgba(198,167,94,0.35);
  }

  .hero-sub {
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(246,241,233,0.55);
    margin-bottom: 3.5rem;
  }

  .hero-cta {
    display: inline-flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-primary {
    display: inline-block;
    padding: 14px 38px;
    background: var(--teal);
    color: var(--ivory);
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--teal);
    border-radius: 4px;
    transition: all 0.35s;
  }
  .btn-primary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(15,76,92,0.25);
  }

  .btn-primary-hero {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ivory);
  }
  .btn-primary-hero:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: 0 8px 30px rgba(198,167,94,0.3);
  }

  .btn-outline {
    display: inline-block;
    padding: 14px 38px;
    background: transparent;
    color: rgba(246,241,233,0.85);
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgba(246,241,233,0.35);
    border-radius: 4px;
    transition: all 0.35s;
  }
  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
  }

  .btn-teal-outline {
    display: inline-block;
    padding: 13px 36px;
    background: transparent;
    color: var(--teal);
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--teal);
    border-radius: 4px;
    transition: all 0.35s;
  }
  .btn-teal-outline:hover {
    background: var(--teal);
    color: var(--ivory);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(15,76,92,0.2);
  }

  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(246,241,233,0.4);
    animation: heroScrollBounce 2.5s ease infinite;
  }
  .hero-scroll::after {
    content: '';
    width: 1px; height: 45px;
    background: linear-gradient(to bottom, rgba(198,167,94,0.5), transparent);
  }
  @keyframes heroScrollBounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
  }

  /* ── STATS STRIP ── */
  .stats-strip {
    background: var(--ivory-dark);
    border-top: 1px solid rgba(198,167,94,0.2);
    border-bottom: 1px solid rgba(198,167,94,0.2);
    padding: 3rem 5%;
  }
  .stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
  }
  .stat-item { position: relative; }
  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 10%; bottom: 10%;
    width: 1px;
    background: rgba(198,167,94,0.25);
  }
  .stat-num {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--teal);
    line-height: 1;
    display: block;
  }
  .stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--warm-grey);
    margin-top: 0.5rem;
    display: block;
  }

  /* ── SECTION WRAPPER ── */
  .section {
    padding: 110px 5%;
    max-width: 1400px;
    margin: 0 auto;
  }
  .section-full { padding: 110px 5%; }

  .section-label {
    font-size: 0.58rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--sans);
    font-weight: 400;
  }
  .section-label::after {
    content: '';
    flex: 1;
    max-width: 50px;
    height: 1px;
    background: var(--gold-dim);
    opacity: 0.5;
  }
  .section-label.centered {
    justify-content: center;
  }
  .section-label.centered::before {
    content: '';
    flex: 1;
    max-width: 50px;
    height: 1px;
    background: var(--gold-dim);
    opacity: 0.5;
  }
  .section-label.centered::after { display: block; }

  h2 {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: 0.01em;
    margin-bottom: 1.5rem;
    color: var(--ink);
  }
  h2 em {
    font-style: italic;
    color: var(--teal);
  }

  .section-intro {
    max-width: 520px;
    color: var(--warm-grey);
    font-size: 0.88rem;
    line-height: 1.9;
  }

  .gold-rule {
    width: 50px; height: 1px;
    background: var(--gold);
    margin: 1.8rem 0;
    opacity: 0.7;
  }

  /* ── HORIZONTAL DIVIDER ── */
  .champagne-hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(198,167,94,0.4), transparent);
    margin: 0;
  }

  /* ── ABOUT ── */
  .about-bg { background: var(--ivory); }

  .about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
    gap: clamp(2.5rem, 6vw, 5.5rem);
    align-items: start;
  }

  .about-image-frame {
    position: relative;
    width: 100%;
  }
  .about-image-frame::before {
    content: '';
    position: absolute;
    top: -18px; right: -18px;
    left: 18px; bottom: 18px;
    border: 1px solid rgba(198,167,94,0.3);
    z-index: 0;
    border-radius: 2px;
  }

  .about-img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(150deg, var(--champagne) 0%, var(--ivory-dark) 60%, var(--champagne) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 2px;
  }
  .about-img-placeholder::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(ellipse at 30% 70%, rgba(15,76,92,0.06), transparent);
  }
  .img-ph-text {
    font-family: var(--serif);
    font-size: 0.8rem;
    color: var(--warm-grey);
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .img-ph-note {
    font-size: 0.62rem;
    color: var(--warm-grey-light);
    letter-spacing: 0.1em;
  }

  .about-text {
    max-width: 420px;
    padding-top: 1.5rem;
  }
  .about-text p {
    color: var(--ink-mid);
    margin-bottom: 1.2rem;
    font-size: 0.92rem;
    line-height: 1.85;
  }


  /* ── ABOUT HOME TRIO ── */
  .about-home-wrap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  .about-home-header { margin-bottom: 3rem; }
  .about-home-header .gold-rule { margin: 1.2rem auto; }

  .about-trio {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 3rem;
  }
  .about-trio-img {
    overflow: hidden;
    border-radius: 3px;
  }
  .about-trio-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  .about-trio-img--tall img {
    height: 320px;
  }
  .about-trio-img:hover img { transform: scale(1.03); }

  .about-home-body {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }
  .about-home-body p {
    color: var(--ink-mid);
    font-size: 0.92rem;
    line-height: 1.85;
    margin-bottom: 1.2rem;
  }

  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(198,167,94,0.2);
  }
  .about-stat-num {
    font-family: var(--serif);
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--teal);
    line-height: 1;
    display: block;
  }
  .about-stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--warm-grey);
    margin-top: 0.4rem;
    display: block;
  }

  /* ── FLEET PREVIEW ── */
  .fleet-preview-bg {
    background: var(--teal);
    padding: 110px 5%;
  }
  .fleet-preview-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
  .fleet-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
  }
  .fleet-preview-header .section-label { color: var(--gold-light); }
  .fleet-preview-header .section-label::after { background: var(--gold-dim); }
  .fleet-preview-header h2 { color: var(--ivory); margin-bottom: 0; }
  .fleet-preview-header h2 em { color: var(--gold-light); }

  .fleet-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
  }

  .car-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0;
  }
  .car-img-wrap {
    aspect-ratio: 3/4;
    background: linear-gradient(150deg, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0.2) 100%);
    border: 1px solid rgba(246,241,233,0.08);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .car-ph-icon {
    opacity: 0.12;
    transition: opacity 0.5s;
  }
  .car-ph-icon svg {
    width: 90px; height: auto;
    fill: var(--ivory);
  }
  .car-card:hover .car-ph-icon { opacity: 0.06; }

  .car-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem 1.8rem;
    background: linear-gradient(to top, rgba(10,58,71,0.97) 0%, rgba(10,58,71,0.6) 60%, transparent 100%);
    transform: translateY(12px);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .car-card:hover .car-overlay { transform: translateY(0); }

  .car-name {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 0.8rem;
    color: var(--ivory);
  }
  .car-desc {
    font-size: 0.78rem;
    color: rgba(230,216,195,0.75);
    line-height: 1.65;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    font-weight: 300;
  }
  .car-card:hover .car-desc { opacity: 1; max-height: 80px; }

  .car-enquire {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: var(--sans);
    text-decoration: none;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.4s 0.1s;
  }
  .car-card:hover .car-enquire { opacity: 1; transform: translateY(0); }

  /* ── FLEET PAGE ── */
  .fleet-page-bg { background: var(--ivory); }

  .fleet-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 110px;
  }
  .fleet-detail-item {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 90px;
    padding-bottom: 90px;
    border-bottom: 1px solid rgba(198,167,94,0.18);
  }
  .fleet-detail-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

  /* Alternating layout: odd rows flip image to right, text to left */
  .fleet-item-reverse { grid-template-columns: 1fr 1.1fr; }
  .fleet-item-reverse .fleet-img-pair  { order: 2; }
  .fleet-item-reverse .fleet-car-text  { order: 1; }

  .fleet-car-text { display: flex; flex-direction: column; justify-content: center; }
  .fleet-car-text .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    width: min(100%, 320px);
    text-align: center;
    margin-top: 1.2rem;
  }

  .fleet-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(150deg, var(--champagne) 0%, var(--ivory-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    border: 1px solid rgba(198,167,94,0.15);
  }
  .fleet-img-placeholder::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(ellipse at 40% 60%, rgba(15,76,92,0.04), transparent);
  }

  .fleet-car-name {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.15;
  }
  .fleet-car-name em { font-style: italic; color: var(--teal); }
  .fleet-car-desc {
    color: var(--ink-mid);
    font-size: 0.88rem;
    margin-bottom: 1.8rem;
    line-height: 1.85;
  }

  /* ── SERVICES ── */
  .services-bg { background: var(--ivory-dark); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5px;
    margin-top: 4rem;
    background: rgba(198,167,94,0.12);
    border: 1px solid rgba(198,167,94,0.12);
    border-radius: 4px;
    overflow: hidden;
  }
  .service-item {
    background: var(--ivory);
    padding: 3rem 2.8rem;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
  }
  .service-item:hover { background: var(--ivory-dark); }
  .service-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 2.8rem; right: 2.8rem;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .service-item:hover::after { transform: scaleX(1); }

  .service-num {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(198,167,94,0.18);
    line-height: 1;
    margin-bottom: 1.2rem;
  }
  .service-title {
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--teal);
  }
  .service-desc {
    font-size: 0.84rem;
    color: var(--ink-mid);
    line-height: 1.85;
  }

  /* Terms */
  .terms-box {
    margin-top: 5rem;
    padding: 3rem 3.5rem;
    border: 1px solid rgba(198,167,94,0.2);
    background: var(--ivory);
    border-radius: 4px;
  }
  .terms-box h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
  }
  .terms-box h3 em { font-style: italic; color: var(--teal); }
  .terms-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .terms-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(198,167,94,0.12);
    font-size: 0.84rem;
    color: var(--ink-mid);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    line-height: 1.7;
  }
  .terms-item span.dash { color: var(--gold); flex-shrink: 0; }

  /* ── TESTIMONIALS ── */
  .testimonials-bg { background: var(--teal); padding: 110px 5%; }
  .testi-inner { max-width: 1200px; margin: 0 auto; }
  .testi-header .section-label { color: var(--gold-light); }
  .testi-header .section-label::after { background: var(--gold-dim); }
  .testi-header h2 { color: var(--ivory); }
  .testi-header h2 em { color: var(--gold-light); }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 4rem;
  }
  .testi-card {
    padding: 2.8rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(198,167,94,0.12);
    position: relative;
    transition: background 0.35s, border-color 0.35s;
  }
  .testi-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(198,167,94,0.3);
  }
  .testi-quote-mark {
    font-family: var(--serif);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 0.8rem;
    display: block;
  }
  .testi-text {
    font-family: var(--serif);
    font-size: 1rem;
    font-style: italic;
    color: rgba(246,241,233,0.85);
    line-height: 1.85;
    margin-bottom: 2rem;
  }
  .testi-author {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: var(--sans);
    font-weight: 400;
  }
  .testi-date {
    font-size: 0.68rem;
    color: rgba(246,241,233,0.4);
    margin-top: 0.3rem;
  }

  /* ── CONTACT ── */
  .contact-bg { background: var(--ivory); }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: start;
    margin-top: 4rem;
  }

  .contact-info-block {
    background: var(--ivory-dark);
    border: 1px solid rgba(198,167,94,0.18);
    padding: 2.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
  }
  .contact-info-block h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--teal);
  }
  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    font-size: 0.84rem;
    color: var(--ink-mid);
  }
  .contact-detail:last-child { margin-bottom: 0; }
  .contact-icon-wrap {
    width: 36px; height: 36px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .contact-icon {
    color: var(--ivory);
    font-size: 0.9rem;
    line-height: 1;
  }
  .contact-detail-label {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 3px;
    font-family: var(--sans);
    font-weight: 400;
  }
  .contact-info-block a {
    color: var(--ink-mid);
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-info-block a:hover { color: var(--teal); }

  /* Calendly */
  .calendly-block {
    margin-bottom: 0;
  }
  .calendly-block h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 0.4rem;
    color: var(--teal);
  }
  .calendly-block p {
    font-size: 0.82rem;
    color: var(--warm-grey);
    margin-bottom: 1.2rem;
  }
  .calendly-embed-container {
    border: 1px solid rgba(198,167,94,0.2);
    border-radius: 4px;
    overflow: hidden;
    background: var(--ivory);
  }
  /* Actual Calendly inline widget */
  .calendly-inline-widget {
    width: 100%;
    min-height: 630px;
  }
  .calendly-placeholder {
    background: var(--ivory-dark);
    border: 1.5px dashed rgba(198,167,94,0.35);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 4px;
    padding: 2.5rem;
    text-align: center;
  }
  .calendly-placeholder .cal-icon {
    font-size: 1.8rem;
    opacity: 0.4;
    color: var(--teal);
  }
  .calendly-placeholder .cal-title {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--teal);
    font-weight: 300;
  }
  .calendly-placeholder .cal-note {
    font-size: 0.72rem;
    color: var(--warm-grey);
    letter-spacing: 0.05em;
    max-width: 300px;
    line-height: 1.7;
  }

  /* Enquiry form */
  .form-block h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--teal);
    margin-bottom: 2rem;
  }
  .form-group { margin-bottom: 1.5rem; }
  .form-group label {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-grey);
    margin-bottom: 0.5rem;
    font-weight: 400;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: var(--ivory);
    border: 1px solid rgba(198,167,94,0.25);
    color: var(--ink);
    padding: 13px 16px;
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    appearance: none;
    border-radius: 4px;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(15,76,92,0.07);
  }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-group select { cursor: pointer; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* ── FOOTER ── */
  footer {
    background: var(--teal-dark);
    padding: 65px 5% 40px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
  }
  .footer-logo {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--ivory);
    margin-bottom: 1rem;
    display: block;
    cursor: pointer;
  }
  .footer-logo a,
  .footer-logo a:link,
  .footer-logo a:visited,
  .footer-logo a:hover,
  .footer-logo a:active {
    color: var(--ivory);
    text-decoration: none;
  }
  .footer-logo span { font-style: italic; color: var(--gold-light); }
  .footer-brand p {
    font-size: 0.8rem;
    color: rgba(246,241,233,0.5);
    max-width: 270px;
    line-height: 1.8;
  }
  .footer-col h4 {
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.4rem;
    font-weight: 400;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.7rem; }
  .footer-col ul li a {
    font-size: 0.8rem;
    color: rgba(246,241,233,0.5);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
  }
  .footer-col ul li a:hover { color: var(--gold-light); }
  .footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(198,167,94,0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: rgba(246,241,233,0.3);
    letter-spacing: 0.05em;
  }
  .footer-social {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.6rem;
    align-items: center;
  }
  .footer-social a {
    color: rgba(246,241,233,0.55);
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  .footer-social a svg {
    width: 54px;
    height: 54px;
    fill: currentColor;
    display: block;
    flex-shrink: 0;
  }
  .footer-social a:hover {
    color: var(--gold-light);
    transform: translateY(-2px);
  }

  /* ── FORM SUCCESS ── */
  #form-success {
    display: none;
    margin-top: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(15,76,92,0.2);
    background: rgba(15,76,92,0.04);
    text-align: center;
    border-radius: 4px;
  }
  #form-success .success-title {
    font-family: var(--serif);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--teal);
  }
  #form-success p { font-size: 0.84rem; color: var(--warm-grey); }

  /* ── PAGE-LEVEL HEADER (fleet, services, etc.) ── */
  .page-hero {
    background: var(--teal);
    padding: 120px 5% 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .page-hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 60%; height: 200%;
    background: radial-gradient(ellipse, rgba(198,167,94,0.06) 0%, transparent 60%);
    pointer-events: none;
  }
  .page-hero .section-label { color: var(--gold-light); justify-content: center; }
  .page-hero .section-label::before {
    content: '';
    flex: 1; max-width: 50px; height: 1px;
    background: var(--gold-dim); opacity: 0.5;
  }
  .page-hero .section-label::after { background: var(--gold-dim); }
  .page-hero h2 { color: var(--ivory); margin-bottom: 0; }
  .page-hero h2 em { color: var(--gold-light); }
  .page-hero p { color: rgba(246,241,233,0.6); font-size: 0.88rem; margin-top: 1rem; max-width: 500px; margin-left: auto; margin-right: auto; }

  /* ── ABOUT PAGE TWO-SECTION LAYOUT ── */
  .about-section-block {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
  }
  .about-section-block + .about-section-block {
    padding-top: 0;
  }
  .about-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(198,167,94,0.35), transparent);
    margin: 0 5%;
  }

  /* Image gallery grid for about sections */
  .about-img-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 2.5rem;
  }
  .about-gallery-slot {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(150deg, var(--champagne) 0%, var(--ivory-dark) 100%);
    border: 1px solid rgba(198,167,94,0.2);
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s;
  }
  .about-gallery-slot:hover { border-color: rgba(198,167,94,0.5); }
  .about-gallery-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0; left: 0;
  }
  .about-gallery-slot input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 3;
  }
  .about-gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s;
  }
  .about-gallery-placeholder svg {
    width: 32px; height: 32px;
    stroke: var(--warm-grey-light);
    fill: none;
    stroke-width: 1.2;
  }
  .about-gallery-placeholder span {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--warm-grey-light);
  }
  .about-gallery-slot.has-image .about-gallery-placeholder { opacity: 0; }
  .about-gallery-slot .remove-img-btn {
    position: absolute;
    top: 8px; right: 8px;
    background: rgba(10,58,71,0.85);
    border: none;
    border-radius: 50%;
    width: 26px; height: 26px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 4;
    color: var(--ivory);
    font-size: 0.75rem;
    line-height: 1;
    transition: background 0.2s;
  }
  .about-gallery-slot.has-image .remove-img-btn { display: flex; }
  .about-gallery-slot .remove-img-btn:hover { background: rgba(10,58,71,1); }

  /* Two-column layout for about sections */
  .about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .about-split.reverse { direction: rtl; }
  .about-split.reverse > * { direction: ltr; }
  .about-split-text p {
    color: var(--ink-mid);
    margin-bottom: 1.2rem;
    font-size: 0.92rem;
    line-height: 1.85;
  }
  @media (max-width: 768px) {
    .about-split { grid-template-columns: 1fr; gap: 2.5rem; direction: ltr; }
    .about-split.reverse { direction: ltr; }
    .about-img-gallery { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 480px) {
    .about-img-gallery { grid-template-columns: 1fr; }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .about-trio {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .about-trio-img img,
    .about-trio-img--tall img { height: 220px; }
        .about-grid,
    .contact-grid,
    .fleet-detail-item,
    .fleet-item-reverse { grid-template-columns: 1fr; gap: 3rem; }
    .fleet-item-reverse .fleet-img-pair { order: 0; }
    .fleet-item-reverse .fleet-car-text { order: 0; }
    .fleet-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .testi-grid,
    .services-grid,
    .terms-cols { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .about-image-frame { order: -1; }
    .form-row { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: 1fr; gap: 2rem; }
    .stat-item::after { display: none; }
    .fleet-preview-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  }

  @media (max-width: 600px) {
    .hero h1 { font-size: 3rem; }
    .section { padding: 70px 5%; }
    .fleet-preview-bg { padding: 70px 5%; }
    .testimonials-bg { padding: 70px 5%; }
    .page-hero { padding: 100px 5% 60px; }
  }

  /* Mobile nav overlay */
  .mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: var(--ivory);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }
  .mobile-nav-overlay.open { display: flex; }
  .mobile-nav-overlay a {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--teal);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
  }
  .mobile-nav-overlay a:hover { color: var(--gold); }
  .mobile-nav-close {
    position: absolute;
    top: 2rem; right: 5%;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--teal);
  }

  /* Smooth fade-in for sections */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── ASPECT-RATIO FALLBACK (iOS Safari < 15) ── */
  @supports not (aspect-ratio: 1) {
    .about-img-placeholder { height: 0; padding-top: 125%; }
    .fleet-img-placeholder  { height: 0; padding-top: 56.25%; }
    .car-img-wrap           { height: 0; padding-top: 133%; }
  }

  /* ── FLEET: DUAL IMAGE LAYOUT ── */
  .fleet-img-pair {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 6px;
    border-radius: 2px;
    overflow: hidden;
  }
  .fleet-img-primary,
  .fleet-img-secondary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, var(--champagne) 0%, var(--ivory-dark) 100%);
    border: 1px solid rgba(198,167,94,0.15);
  }
  .fleet-img-primary {
    aspect-ratio: 4/3;
    border-radius: 2px 0 0 2px;
  }
  .fleet-img-secondary {
    aspect-ratio: 1/1;
    border-radius: 0 2px 2px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  .fleet-img-primary img,
  .fleet-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  /* placeholder state (before images are added) */
  .fleet-img-primary .img-ph-text,
  .fleet-img-secondary .img-ph-text {
    font-family: var(--serif);
    font-size: 0.75rem;
    color: var(--warm-grey);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    padding: 1rem;
  }
  .fleet-img-primary .img-ph-note,
  .fleet-img-secondary .img-ph-note {
    font-size: 0.58rem;
    color: var(--warm-grey-light);
    letter-spacing: 0.1em;
    text-align: center;
    padding: 0 1rem;
  }
  .fleet-img-secondary .img-ph-tag {
    font-size: 0.52rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dim);
    opacity: 0.7;
    margin-top: 0.5rem;
  }
  @supports not (aspect-ratio: 4/3) {
    .fleet-img-primary  { padding-top: 75%; height: 0; }
    .fleet-img-secondary { padding-top: 100%; height: 0; }
  }
  @media (max-width: 768px) {
    .fleet-img-pair { grid-template-columns: 1fr; }
    .fleet-img-primary  { border-radius: 2px 2px 0 0; aspect-ratio: 16/9; }
    .fleet-img-secondary { border-radius: 0 0 2px 2px; aspect-ratio: 16/9; }
  }

  /* ── ABOUT PAGE: 4-PHOTO QUAD GRID ── */
  .about-image-frame--quad::before { display: none; }
  .about-quad-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    border-radius: 3px;
    width: 100%;
  }
  .about-quad-slot {
    aspect-ratio: 1 / 1;
    background: linear-gradient(150deg, var(--champagne) 0%, var(--ivory-dark) 100%);
    border: 1px solid rgba(198,167,94,0.18);
    overflow: hidden;
    border-radius: 2px;
    position: relative;
  }
  .about-quad-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: transform 0.5s ease;
  }
  .about-quad-slot:hover img { transform: scale(1.04); }
  @media (max-width: 768px) {
    .about-grid {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    .about-text {
      max-width: none;
      padding-top: 0;
    }
    .about-quad-grid { gap: 8px; }
    .fleet-car-text .btn-primary {
      width: 100%;
    }
    .footer-social a svg {
      width: 48px;
      height: 48px;
    }
  }


  .nav-logo-img {
    height: 38px;
    width: auto;
    display: block;
  }
  .nav-logo-placeholder {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 6px 12px;
    border: 1.5px dashed rgba(198,167,94,0.4);
    border-radius: 3px;
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dim);
    cursor: default;
  }
