/* ==========================================================
   GLOBAL TRAVEL RESERVATIONS LLC — Premium Redesign
   Aesthetic: deep midnight navy, champagne gold, editorial type.
   ========================================================== */

:root {
  --bg: #0a0e17;
  --bg-2: #0f1622;
  --surface: #ffffff;
  --surface-soft: #f6f4ef;
  --ink: #0a0e17;
  --ink-soft: #2a3142;
  --muted: #6b7280;
  --line: #e7e3da;
  --gold: #c9a24c;
  --gold-soft: #e8d49a;
  --gold-deep: #8a6a25;
  --accent: #1a2540;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 6px 18px rgba(10, 14, 23, 0.06);
  --shadow-md: 0 18px 40px rgba(10, 14, 23, 0.1);
  --shadow-lg: 0 30px 80px rgba(10, 14, 23, 0.18);
  --maxw: 1200px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
  background: var(--surface-soft);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 90px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--bg);
  color: #cbd1dc;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.top-bar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.top-bar a {
  color: #fff;
}
.top-bar a:hover {
  color: var(--gold-soft);
}
.top-bar-divider {
  opacity: 0.3;
}
.top-bar-tag {
  margin-left: auto;
  color: var(--gold-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(201, 162, 76, 0.08), transparent);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.brand-text small {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9aa3b3;
}

.primary-nav {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.primary-nav a {
  color: #cbd1dc;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.25s var(--ease);
}
.primary-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.primary-nav a.active {
  color: var(--gold-soft);
}
.primary-nav a.active::after {
  content: "";
  display: block;
  height: 1px;
  width: 24px;
  background: var(--gold);
  margin: 4px auto 0;
}

.nav-cta {
  background: var(--gold);
  color: #0a0e17;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s var(--ease);
  box-shadow: 0 8px 24px rgba(201, 162, 76, 0.25);
}
.nav-cta:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #0a0e17 0%, #101a2e 60%, #1a2540 100%);
  padding: 110px 24px 130px;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      900px 500px at 80% 20%,
      rgba(201, 162, 76, 0.18),
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 10% 90%,
      rgba(70, 110, 200, 0.18),
      transparent 60%
    ),
    url("images/hero-luxury.jpg")
      center/cover no-repeat;
  opacity: 0.55;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 23, 0.4) 0%,
    rgba(10, 14, 23, 0.85) 100%
  );
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
  animation: fadeUp 1s var(--ease) both;
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  padding: 8px 18px;
  border: 1px solid rgba(201, 162, 76, 0.4);
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 500;
}
.hero-sub {
  max-width: 640px;
  margin: 0 auto 38px;
  color: #c8cfdb;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero-stats strong {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--gold-soft);
  font-weight: 600;
}
.hero-stats span {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9aa3b3;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.btn-primary {
  background: var(--gold);
  color: #0a0e17;
  box-shadow: 0 12px 30px rgba(201, 162, 76, 0.3);
}
.btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(201, 162, 76, 0.4);
}
.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.03);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
}
.btn-block {
  width: 100%;
  padding: 17px;
}

/* ===== SECTION SHELL ===== */
.section {
  max-width: var(--maxw);
  margin: 90px auto;
  padding: 0 24px;
}
.section.narrow {
  max-width: 840px;
  text-align: center;
}
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-eyebrow.light {
  color: var(--gold-soft);
}
.section-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.section-title.light {
  color: #fff;
}
.section-lead {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}
#intro p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-size: 1.02rem;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all 0.3s var(--ease);
}
.trust-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.trust-icon {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}
.trust-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--ink);
}
.trust-item p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* ===== CARS GRID ===== */
.cars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.car-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}
.car-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.car-card-featured {
  border-color: var(--gold);
  box-shadow:
    0 0 0 1px var(--gold) inset,
    var(--shadow-sm);
}

.car-media {
  position: relative;
  overflow: hidden;
  background: #eee;
}
.car-image {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.car-card:hover .car-image {
  transform: scale(1.08);
}
.car-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 14, 23, 0.85);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 6px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.car-tag.tag-gold {
  background: var(--gold);
  color: #0a0e17;
}

.car-body {
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.car-body h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.car-body p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex: 1;
}
.car-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.price {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--ink);
}
.price small {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 400;
  margin-left: 4px;
  font-family: "Inter", sans-serif;
}
.btn-link {
  color: var(--gold-deep);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all 0.25s var(--ease);
}
.btn-link:hover {
  color: var(--ink);
  transform: translateX(4px);
}

/* ===== ENQUIRY ===== */
.enquiry-section {
  max-width: 1280px;
  padding: 0 24px;
}
.enquiry-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 0;
  background: linear-gradient(135deg, #0a0e17 0%, #1a2540 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.enquiry-aside {
  padding: 60px 50px;
  color: #fff;
  position: relative;
  background: radial-gradient(
    500px 400px at 0% 100%,
    rgba(201, 162, 76, 0.18),
    transparent 60%
  );
}
.enquiry-aside .section-eyebrow {
  margin-bottom: 14px;
}
.enquiry-aside .section-title {
  margin-bottom: 18px;
}
.enquiry-lead {
  color: #c8cfdb;
  font-weight: 300;
  margin-bottom: 28px;
}
.enquiry-points {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}
.enquiry-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: #dbe0ea;
  font-size: 0.95rem;
}
.enquiry-points li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 10px;
  line-height: 1.7;
}
.enquiry-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.enquiry-contact a {
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
}
.enquiry-contact a:hover {
  color: var(--gold-soft);
}

.enquiry-form {
  background: #fff;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: #fafaf7;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  transition: all 0.25s var(--ease);
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 162, 76, 0.15);
}
textarea {
  resize: vertical;
  min-height: 90px;
}
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 6px;
}
.check input {
  width: auto;
  margin-top: 3px;
}
.check a {
  color: var(--gold-deep);
  text-decoration: underline;
}

/* ===== SUPPORT ===== */
.support-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.support-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  transition: all 0.3s var(--ease);
}
.support-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.support-card span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.support-card strong {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg);
  color: #cbd1dc;
  padding: 70px 24px 40px;
  margin-top: 90px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}
.footer-brand p {
  color: #9aa3b3;
  font-size: 13px;
  line-height: 1.6;
}
.footer-brand strong {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 22px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}
.footer-links a {
  color: #cbd1dc;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold-soft);
}
.footer-copy {
  color: #7a8090;
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* ===== FLOATING TFN ===== */
.tfn-bar {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999;
  background: var(--gold);
  color: #0a0e17;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 14px 34px rgba(201, 162, 76, 0.4);
  transition: all 0.3s var(--ease);
}
.tfn-bar:hover {
  transform: translateY(-3px) scale(1.03);
  background: var(--gold-soft);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 23, 0.96);
  backdrop-filter: blur(14px);
  color: #fff;
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  border-top: 1px solid rgba(201, 162, 76, 0.3);
}
.cookie-banner a {
  color: var(--gold-soft);
  text-decoration: underline;
}
.cookie-banner button {
  background: var(--gold);
  color: #0a0e17;
  border: none;
  padding: 9px 22px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.25s var(--ease);
}
.cookie-banner button:hover {
  background: var(--gold-soft);
}

/* ===== HAMBURGER ===== */
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: all 0.25s var(--ease);
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s var(--ease),
    opacity 0.2s var(--ease),
    top 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) {
  top: 14px;
}
.nav-toggle span:nth-child(2) {
  top: 21px;
}
.nav-toggle span:nth-child(3) {
  top: 28px;
}
.nav-toggle.open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .enquiry-grid {
    grid-template-columns: 1fr;
  }
  .enquiry-aside {
    padding: 48px 36px;
  }
  .enquiry-form {
    padding: 40px 32px;
  }
  .car-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .support-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
  .nav-wrap {
    gap: 14px;
    padding: 14px 18px;
    flex-wrap: wrap;
  }
  .nav-cta {
    order: 2;
    margin-left: 0;
    padding: 9px 16px;
    font-size: 13px;
  }
  .primary-nav {
    order: 4;
    width: 100%;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.35s var(--ease),
      opacity 0.25s var(--ease),
      padding 0.25s var(--ease);
  }
  .primary-nav.open {
    max-height: 520px;
    opacity: 1;
    padding: 8px 0 4px;
  }
  .primary-nav a {
    width: 100%;
    text-align: center;
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    font-size: 15px;
  }
  .primary-nav a.active::after {
    display: none;
  }
  .primary-nav a.active {
    background: rgba(201, 162, 76, 0.12);
    color: var(--gold-soft);
  }
}
@media (max-width: 768px) {
  .top-bar-inner {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 6px 12px;
  }
  .top-bar-tag {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  .hero {
    padding: 80px 20px 90px;
  }
  .hero-stats {
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-stats strong {
    font-size: 1.6rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
  .section {
    margin: 64px auto;
    padding: 0 20px;
  }
  .section.narrow {
    padding: 0 20px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .car-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .footer-brand {
    justify-content: center;
  }
  .footer-links {
    gap: 6px 14px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .tfn-bar {
    bottom: 14px;
    right: 14px;
    left: 14px;
    text-align: center;
  }
  body {
    padding-bottom: 120px;
  }
}
@media (max-width: 480px) {
  .brand-text small {
    display: none;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
  .hero-title {
    font-size: 2.1rem;
    line-height: 1.15;
  }
  .hero-sub {
    font-size: 1rem;
  }
  .eyebrow {
    font-size: 11px;
  }
  .section-title {
    font-size: 1.7rem;
  }
  .enquiry-aside,
  .enquiry-form {
    padding: 32px 22px;
  }
  .car-body {
    padding: 20px;
  }
  .nav-cta {
    padding: 8px 14px;
    font-size: 12px;
  }
  .top-bar {
    font-size: 11px;
    padding: 8px 14px;
  }
}

/* Legal pages */
.legal-section {
  padding: 80px 24px;
}
.legal-wrap {
  max-width: 880px;
  margin: 0 auto;
  background: var(--surface, #fff);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 64px 56px;
  box-shadow: 0 30px 60px -40px rgba(15, 23, 42, 0.25);
}
.legal-wrap h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 40px 0 14px;
  color: var(--ink, #0f172a);
  letter-spacing: -0.01em;
}
.legal-wrap h2:first-of-type {
  margin-top: 0;
}
.legal-wrap p {
  font-size: 16px;
  line-height: 1.75;
  color: #475569;
  margin: 0 0 14px;
}
.legal-wrap ul {
  padding-left: 20px;
  margin: 0 0 18px;
}
.legal-wrap li {
  font-size: 15.5px;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 10px;
}
.legal-wrap a {
  color: var(--accent, #b88a3e);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 138, 62, 0.3);
}
.legal-wrap a:hover {
  border-bottom-color: var(--accent, #b88a3e);
}
.legal-meta {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent, #b88a3e);
  margin-bottom: 8px;
  font-weight: 600;
}
@media (max-width: 720px) {
  .legal-section {
    padding: 48px 16px;
  }
  .legal-wrap {
    padding: 36px 22px;
    border-radius: 16px;
  }
}

/* Testimonials */
.testimonials-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #fff 0%, #fafaf6 100%);
}
.t-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.t-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.t-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 48px);
  margin: 14px 0 14px;
  color: var(--ink, #0f172a);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.t-title em {
  color: var(--accent, #b88a3e);
  font-style: italic;
}
.t-lede {
  font-size: 17px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 20px 50px -40px rgba(15, 23, 42, 0.3);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -40px rgba(15, 23, 42, 0.4);
}
.t-stars {
  color: var(--accent, #b88a3e);
  font-size: 18px;
  letter-spacing: 2px;
}
.t-star-dim {
  color: rgba(184, 138, 62, 0.25);
}
.t-quote {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  line-height: 1.6;
  color: #1f2937;
  margin: 0;
  font-style: italic;
  flex: 1;
}
.t-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent, #b88a3e), #d4a85a);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.t-name {
  display: block;
  font-size: 15px;
  color: var(--ink, #0f172a);
  font-weight: 600;
}
.t-loc {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-top: 2px;
}
.t-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}
@media (max-width: 980px) {
  .t-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .testimonials-section {
    padding: 56px 16px;
  }
  .t-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .t-card {
    padding: 26px 22px;
  }
  .t-intro {
    margin-bottom: 36px;
  }
}

/* === Testimonial Carousel === */
.t-carousel {
  position: relative;
  margin-top: 48px;
  padding: 0 8px;
}
.t-track {
  display: flex;
  gap: 0;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  touch-action: pan-y;
}
.t-track > .t-card {
  flex: 0 0 33.333%;
  margin: 0;
  padding: 0 14px;
  box-sizing: border-box;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.t-track > .t-card > * {
  /* re-wrap inner content using pseudo card */
}
.t-track .t-card {
  position: relative;
}
.t-track .t-card::before {
  content: "";
  position: absolute;
  inset: 0 14px;
  background: var(--surface, #fff);
  border: 1px solid color-mix(in oklab, var(--ink, #111) 8%, transparent);
  border-radius: 18px;
  box-shadow: 0 12px 40px -24px rgba(0, 0, 0, 0.25);
  z-index: 0;
}
.t-track .t-card > * {
  position: relative;
  z-index: 1;
  padding-left: 14px;
  padding-right: 14px;
}
.t-track .t-card > .t-stars {
  padding-top: 26px;
  display: block;
}
.t-track .t-card > .t-meta {
  padding-bottom: 26px;
}

.t-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--ink, #111) 14%, transparent);
  background: var(--surface, #fff);
  color: var(--ink, #111);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.t-arrow:hover {
  transform: translateY(-50%) scale(1.06);
  background: var(--gold, #c9a14a);
  color: #fff;
}
.t-arrow-prev {
  left: -8px;
}
.t-arrow-next {
  right: -8px;
}

.t-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: color-mix(in oklab, var(--ink, #111) 18%, transparent);
  cursor: pointer;
  transition:
    width 0.3s ease,
    background 0.3s ease;
  padding: 0;
}
.t-dot.is-active {
  width: 28px;
  background: var(--gold, #c9a14a);
}

@media (max-width: 1024px) {
  .t-track > .t-card {
    flex-basis: 50%;
  }
}
@media (max-width: 720px) {
  .t-track > .t-card {
    flex-basis: 100%;
    padding: 0 6px;
  }
  .t-track .t-card::before {
    inset: 0 6px;
  }
  .t-arrow {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
  .t-arrow-prev {
    left: -4px;
  }
  .t-arrow-next {
    right: -4px;
  }
}
