@import url("https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,500;6..72,600;6..72,700&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --bg: #ebe5d8;
  --bg-strong: #d8d2c5;
  --surface: rgba(246, 242, 234, 0.84);
  --surface-strong: rgba(251, 248, 242, 0.94);
  --surface-dark: #202722;
  --text: #232822;
  --muted: #626c63;
  --line: rgba(35, 40, 34, 0.12);
  --line-strong: rgba(35, 40, 34, 0.18);
  --accent: #7d8a67;
  --accent-soft: #a9a17d;
  --accent-deep: #556048;
  --success: #4d6955;
  --shadow: 0 28px 70px rgba(24, 24, 19, 0.16);
  --shadow-strong: 0 34px 90px rgba(14, 15, 13, 0.24);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --max-width: 1820px;
  --content-width: 1720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.55), transparent 30%),
    linear-gradient(180deg, #efe8dc 0%, #e4ddcf 48%, #eee8de 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.ambient {
  position: fixed;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.55;
}

.ambient-one {
  top: 80px;
  right: -60px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(192, 122, 64, 0.32) 0%, rgba(192, 122, 64, 0) 72%);
  animation: drift 12s ease-in-out infinite;
}

.ambient-two {
  top: 480px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(51, 96, 84, 0.22) 0%, rgba(51, 96, 84, 0) 74%);
  animation: drift 16s ease-in-out infinite reverse;
}

.topbar,
main section {
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(255, 250, 242, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(55, 45, 27, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #fff8f0;
  font-weight: 800;
  background: linear-gradient(145deg, #7b8964, #444c3a);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 10px 24px rgba(30, 34, 28, 0.22);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.92rem;
}

.brand-copy small,
.muted {
  color: var(--muted);
  font-size: 0.8rem;
}

.nav {
  display: inline-flex;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  font-size: 0.88rem;
  font-weight: 600;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff8f0;
  background: linear-gradient(145deg, #8b9577, #505844);
  box-shadow: 0 18px 35px rgba(53, 60, 45, 0.24);
}

.button-secondary,
.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 251, 246, 0.7);
}

.button-dark {
  color: #fff8f0;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(10, 14, 13, 0.42);
  backdrop-filter: blur(14px);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 28px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 42px 0 12px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.top-banner span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  color: var(--muted);
  font-size: 0.8rem;
}

.hero h1,
.section-heading h2,
.info-panel h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: -0.015em;
}

.hero-text,
.section-heading p,
.inventory-copy p,
.info-panel p {
  max-width: 58ch;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-stats article,
.feature-card,
.inventory-card,
.test-drive-form,
.info-panel,
.trust-panel,
.api-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-stats article {
  padding: 16px;
  border-radius: var(--radius-md);
}

.hero-stats strong,
.trust-panel strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.96rem;
  font-weight: 700;
}

.hero-stats span {
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.visual-card {
  position: absolute;
  inset: 38px 0 38px 26px;
  padding: 20px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.92), rgba(255, 244, 232, 0.74)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 26px 90px rgba(35, 30, 21, 0.15);
  overflow: hidden;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 145, 89, 0.25), transparent 72%);
}

.card-topline,
.car-meta,
.inventory-footer,
.code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.card-topline span,
.inventory-footer a,
.code-header span {
  font-size: 0.84rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.badge-live {
  color: #eef8f5;
  background: rgba(39, 84, 69, 0.94);
}

.car-silhouette {
  position: relative;
  width: 100%;
  height: 240px;
  margin: 20px 0;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(14, 19, 18, 0.08)),
    linear-gradient(140deg, #2a3432 0%, #101716 60%, #42524d 100%);
  overflow: hidden;
}

.image-silhouette {
  background:
    linear-gradient(180deg, rgba(14, 19, 18, 0.06), rgba(14, 19, 18, 0.22)),
    url("assets/banner-hero-range-rover.svg") center/cover no-repeat;
}

.car-silhouette::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 24%;
  height: 34%;
  border-radius: 44% 36% 28% 24% / 66% 66% 26% 26%;
  background: linear-gradient(180deg, #d7e0dc 0%, #6e7d77 18%, #1c2523 78%);
  box-shadow:
    inset 0 -8px 18px rgba(0, 0, 0, 0.45),
    0 22px 40px rgba(0, 0, 0, 0.32);
}

.car-silhouette::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 18%;
  top: 32%;
  height: 20%;
  border-radius: 48% 42% 18% 14% / 100% 100% 18% 14%;
  background: linear-gradient(180deg, rgba(245, 250, 250, 0.94), rgba(121, 135, 130, 0.82));
}

.image-silhouette::before,
.image-silhouette::after {
  display: none;
}

.car-meta {
  position: relative;
  z-index: 1;
}

.car-meta h2,
.inventory-card h3,
.api-card h3,
.feature-card h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
  line-height: 1.4;
}

.car-meta p,
.inventory-card p,
.feature-card p,
.integration-card li,
.trust-panel span {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.86rem;
}

.floating-panel {
  position: absolute;
  display: grid;
  gap: 6px;
  padding: 15px 16px;
  border-radius: 20px;
  background: rgba(255, 250, 243, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 50px rgba(36, 29, 20, 0.14);
  backdrop-filter: blur(18px);
}

.floating-panel strong {
  font-size: 0.92rem;
  line-height: 1.4;
}

.panel-left {
  left: 0;
  bottom: 24px;
}

.panel-right {
  right: 0;
  top: 80px;
}

.panel-label,
.inventory-tag,
.card-index {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.time-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.time-pills span,
.info-points span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

.section-grid,
.inventory-showcase,
.split-section,
.api-section {
  padding: 26px 0 56px;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading.left h2,
.info-panel h2 {
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
}

.feature-grid,
.inventory-grid,
.api-layout {
  display: grid;
  gap: 18px;
}

.feature-grid,
.inventory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.inventory-card,
.info-panel,
.trust-panel,
.api-card {
  padding: 18px;
  border-radius: var(--radius-lg);
}

.banner-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(calc(100% - 32px), var(--content-width));
  margin: 0 auto;
  padding: 4px 0 42px;
}

.secondary-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 0;
}

.info-banner {
  position: relative;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 45px rgba(42, 33, 18, 0.08);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.image-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.92;
}

.image-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 11, 0.18), rgba(8, 12, 11, 0.68)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.06));
}

.info-banner > * {
  position: relative;
  z-index: 1;
}

.banner-stock::before {
  background-image: url("assets/banner-hero-range-rover.svg");
}

.banner-showroom-card::before {
  background-image: url("assets/banner-showroom.svg");
}

.banner-mechanic-card::before,
.banner-service::before {
  background-image: url("assets/banner-mechanic.svg");
}

.banner-drive::before {
  background-image: url("assets/intro-scene-2.svg");
}

.info-banner strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 700;
  color: #fff6eb;
}

.banner-label {
  display: inline-block;
  margin-bottom: 8px;
  color: #ffd7ae;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-banner.wide {
  min-height: 100%;
}

.wide-banner {
  position: relative;
  min-height: 260px;
  margin-bottom: 18px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 12, 11, 0.1), rgba(8, 12, 11, 0.3)),
    url("assets/intro-scene-1.svg") center/cover no-repeat;
  box-shadow: 0 20px 60px rgba(42, 33, 18, 0.12);
}

.wide-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 16, 15, 0.78), rgba(10, 16, 15, 0.12) 62%, rgba(10, 16, 15, 0.44)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.18));
}

.wide-banner-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  max-width: 420px;
  padding: 28px;
}

.wide-banner-copy strong {
  color: #fff3e7;
  font-size: 1rem;
  line-height: 1.5;
}

.inventory-card.highlighted {
  background:
    linear-gradient(180deg, rgba(255, 244, 231, 0.92), rgba(255, 250, 242, 0.72)),
    var(--surface);
  transform: translateY(-8px);
}

.inventory-footer {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.inventory-footer strong {
  font-size: 0.92rem;
}

.inventory-footer a {
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
  align-items: start;
}

.test-drive-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius-xl);
}

.test-drive-form label {
  display: grid;
  gap: 10px;
}

.test-drive-form span {
  font-size: 0.8rem;
  font-weight: 700;
}

.test-drive-form input,
.test-drive-form select,
.test-drive-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.62);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  font-size: 0.88rem;
}

.test-drive-form input:focus,
.test-drive-form select:focus,
.test-drive-form textarea:focus {
  border-color: rgba(182, 106, 47, 0.55);
  box-shadow: 0 0 0 4px rgba(182, 106, 47, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

.full-width {
  grid-column: 1 / -1;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form-footer p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.alt-layout {
  grid-template-columns: 1fr 0.78fr;
}

.trust-panel {
  display: grid;
  gap: 16px;
}

.trust-panel article {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.info-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.api-layout {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.code-card pre {
  margin: 18px 0 0;
  padding: 20px;
  overflow: auto;
  border-radius: 20px;
  color: #f8ece3;
  background: var(--surface-dark);
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #58caa0;
  box-shadow: 0 0 0 6px rgba(88, 202, 160, 0.15);
}

.intro-body {
  background: #111614;
  height: 100svh;
  overflow: hidden;
}

.intro-page {
  position: relative;
  min-height: 100svh;
  color: #f6efe6;
  background: transparent;
  overflow: hidden;
}

.intro-page-minimal {
  width: 100%;
  height: 100svh;
}

.intro-film-stage {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding-top: 88px;
}

.intro-film-stage-fullscreen {
  min-height: 100svh;
  padding-top: clamp(72px, 8svh, 92px);
}

.intro-video-wrap,
.intro-video,
.intro-video-fallback,
.intro-overlay,
.intro-glow {
  position: absolute;
  inset: 0;
}

.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1200ms ease, transform 1600ms ease;
}

.intro-video-scaled {
  object-position: center 44%;
  transform: scale(1.08);
}

.intro-page.is-ready .intro-video {
  opacity: 1;
  transform: scale(1.02);
}

.intro-video-fallback {
  background:
    radial-gradient(circle at 72% 24%, rgba(198, 129, 75, 0.34), transparent 24%),
    linear-gradient(180deg, rgba(11, 19, 18, 0.22), rgba(11, 19, 18, 0.72)),
    linear-gradient(135deg, #101816, #21312d 58%, #7d4b24);
}

.intro-overlay {
  background:
    linear-gradient(90deg, rgba(8, 12, 11, 0.8) 0%, rgba(8, 12, 11, 0.34) 42%, rgba(8, 12, 11, 0.7) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.5));
}

.intro-glow {
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.55;
}

.intro-glow-one {
  inset: auto auto 8% -8%;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 135, 82, 0.26), rgba(199, 135, 82, 0));
  filter: blur(20px);
  animation: floatGlow 10s ease-in-out infinite;
}

.intro-glow-two {
  inset: 8% -12% auto auto;
  width: 36vw;
  height: 36vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 244, 230, 0.1), rgba(255, 244, 230, 0));
  filter: blur(22px);
  animation: floatGlow 14s ease-in-out infinite reverse;
}

.intro-loader {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 18px;
  background:
    radial-gradient(circle at center, rgba(199, 135, 82, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(7, 11, 10, 0.98), rgba(11, 17, 16, 0.9));
  transition: opacity 700ms ease, visibility 700ms ease;
}

.intro-page.is-ready .intro-loader {
  opacity: 0;
  visibility: hidden;
}

.intro-loader-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  color: #fff4e7;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(145deg, rgba(198, 129, 75, 0.92), rgba(111, 64, 29, 0.94));
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
}

.intro-loader-line {
  width: min(220px, 48vw);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(236, 195, 151, 0.9), rgba(255, 255, 255, 0.06));
  transform-origin: left center;
  animation: loaderSweep 1.4s ease-in-out infinite;
}

.brand-on-dark {
  color: #f6efe6;
}

.brand-on-dark .brand-copy small,
.brand-on-dark .brand-copy strong,
.intro-nav a {
  color: inherit;
}

.intro-nav {
  display: inline-flex;
  gap: 16px;
  color: rgba(246, 239, 230, 0.82);
  font-size: 0.84rem;
}

.intro-hero {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: calc(100vh - 90px);
  padding: 64px 86px 52px;
}

.intro-hero-aligned h1 {
  max-width: 12ch;
}

.intro-hero-cinematic {
  min-height: calc(100svh - clamp(72px, 8svh, 92px));
  padding: 0 86px clamp(80px, 12svh, 126px);
  align-content: end;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.intro-page.is-ready .intro-hero-cinematic {
  opacity: 1;
  transform: translateY(0);
}

.intro-kicker-light {
  color: #dfc78f;
}

.eyebrow-light {
  color: #f0bd91;
}

.intro-text {
  max-width: 48ch;
  margin: 18px 0 0;
  color: rgba(246, 239, 230, 0.84);
  font-size: 0.92rem;
  line-height: 1.72;
}

.intro-actions {
  margin-top: 24px;
}

.intro-meta-strip {
  position: absolute;
  left: 86px;
  right: 86px;
  bottom: 26px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(244, 239, 231, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro-logo-reveal {
  position: absolute;
  left: 50%;
  top: clamp(104px, 14svh, 180px);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  border-radius: 999px;
  color: rgba(244, 239, 231, 0.92);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 0.72rem;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  transition: opacity 900ms ease, transform 900ms ease, filter 900ms ease;
  filter: blur(10px);
}

.intro-page.is-revealed .intro-logo-reveal {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  filter: blur(0);
}

.intro-logo-text {
  white-space: nowrap;
}

.intro-logo-line {
  width: clamp(36px, 5vw, 68px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(238, 229, 208, 0.9), rgba(255, 255, 255, 0));
}

.intro-note {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  padding: 10px 12px;
  border-radius: 14px;
  color: rgba(246, 239, 230, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
}

.intro-note code {
  margin-left: 6px;
}

.integration-card ul {
  padding-left: 18px;
  margin: 18px 0 0;
}

.integration-card li + li {
  margin-top: 12px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.04);
  }
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.05);
  }
}

@keyframes loaderSweep {
  0% {
    transform: scaleX(0.2);
    opacity: 0.5;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(0.2);
    opacity: 0.5;
  }
}

@media (max-width: 1040px) {
  .nav {
    display: none;
  }

  .hero,
  .split-section,
  .alt-layout,
  .api-layout,
  .banner-strip,
  .feature-grid,
  .inventory-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .visual-card {
    inset: 24px;
  }

  .panel-right {
    top: 24px;
    right: 16px;
  }

  .panel-left {
    left: 16px;
    bottom: 0;
  }
}

@media (max-width: 720px) {
  .topbar {
    top: 12px;
    padding: 12px 14px;
    border-radius: 24px;
  }

  .brand-copy small,
  .button-ghost {
    display: none;
  }

  .hero h1,
  .section-heading h2,
  .info-panel h2 {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .hero-stats,
  .test-drive-form {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .visual-card {
    inset: 16px;
    padding: 18px;
  }

  .car-silhouette {
    height: 240px;
  }

  .floating-panel {
    position: static;
    margin-top: 14px;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .section-grid,
  .inventory-showcase,
  .split-section,
  .api-section {
    padding-bottom: 72px;
  }

  .intro-header {
    padding-top: 18px;
  }

  .intro-hero {
    min-height: calc(100vh - 72px);
    padding: 40px 24px 40px;
  }

  .intro-hero-cinematic {
    min-height: calc(100svh - 72px);
    padding: 0 24px clamp(56px, 10svh, 88px);
  }

  .intro-meta-strip {
    left: 24px;
    right: 24px;
    bottom: 18px;
    flex-direction: column;
    gap: 8px;
    font-size: 0.64rem;
  }

  .intro-logo-reveal {
    top: 104px;
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.62rem;
    letter-spacing: 0.26em;
  }
}

.theme-classic {
  background: #ddd6c8;
  color: #232822;
}

.theme-classic main,
.theme-classic main section {
  width: 100%;
  max-width: none;
  margin: 0;
}

.theme-classic .brand-light {
  color: #f7f3ea;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding-top: 0;
}

.site-header-inner,
.hero-stage-inner,
.story-grid,
.feature-banners,
.inventory-section,
.workshop-band,
.newsletter-panel,
.site-footer-inner {
  width: 100%;
  margin: 0 auto;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 22px;
  background: linear-gradient(180deg, rgba(216, 210, 197, 0.94), rgba(196, 188, 171, 0.94));
  border-bottom: 1px solid rgba(48, 54, 46, 0.12);
  box-shadow:
    0 18px 40px rgba(54, 51, 43, 0.18),
    0 8px 18px rgba(54, 51, 43, 0.12);
  backdrop-filter: blur(16px);
  transition:
    padding 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-nav {
  display: inline-flex;
  flex: 1;
  align-items: center;
  gap: 24px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: gap 220ms ease, font-size 220ms ease;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  margin: -10px 0;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 22px;
}

.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.65;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  display: grid;
  gap: 2px;
  padding: 12px;
  background: rgba(248, 244, 236, 0.96);
  border: 1px solid rgba(73, 79, 68, 0.1);
  border-radius: 18px;
  box-shadow:
    0 26px 50px rgba(26, 27, 24, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
  pointer-events: none;
}

.nav-dropdown a {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(42, 47, 40, 0.82);
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(85, 96, 72, 0.08);
  color: rgba(20, 24, 20, 1);
  transform: translateX(2px);
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.site-nav-left {
  justify-content: center;
}

.site-nav-right {
  justify-content: center;
}

.site-nav a {
  color: rgba(42, 47, 40, 0.9);
}

.site-nav a:hover {
  color: rgba(20, 24, 20, 1);
}

.site-nav .nav-link-current {
  color: rgba(20, 24, 20, 1);
  background: rgba(85, 96, 72, 0.1);
  box-shadow: inset 0 0 0 1px rgba(85, 96, 72, 0.14);
  border-radius: 999px;
  padding: 9px 14px;
}

.page-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.page-subnav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(244, 239, 231, 0.86);
  backdrop-filter: blur(14px);
}

.page-subnav-light a {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
}

.site-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-logo img {
  display: block;
  width: 190px;
  height: auto;
  filter: sepia(18%) saturate(68%) hue-rotate(18deg) brightness(0.74) contrast(1.02);
  transition: width 220ms ease, filter 220ms ease, transform 220ms ease;
}

.site-header.is-compact .site-header-inner {
  padding: 8px 18px;
  box-shadow:
    0 12px 28px rgba(54, 51, 43, 0.14),
    0 4px 10px rgba(54, 51, 43, 0.1);
}

.site-header.is-compact .site-nav {
  gap: 18px;
  font-size: 0.78rem;
}

.site-header.is-compact .site-logo img {
  width: 160px;
  transform: translateY(-1px);
}

.hero-stage {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding-top: clamp(72px, 8svh, 92px);
  width: 100%;
}

.hero-stage-media,
.hero-stage-overlay {
  position: absolute;
  inset: 0;
}

.hero-stage-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 9, 0.18), rgba(7, 10, 9, 0.22)),
    url("assets/hero-defender-optimized.jpg") center/cover no-repeat;
  transform: scale(1.015);
  background-position: center 40%;
}

.hero-stage-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 72%, rgba(215, 172, 109, 0.18), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.12), transparent 22%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-stage-overlay {
  background:
    linear-gradient(180deg, rgba(10, 12, 11, 0.2), rgba(10, 12, 11, 0.66)),
    linear-gradient(90deg, rgba(10, 12, 11, 0.58), rgba(10, 12, 11, 0.08) 58%, rgba(10, 12, 11, 0.3));
}

.hero-stage-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: calc(100svh - clamp(72px, 8svh, 92px));
  padding-bottom: clamp(128px, 18svh, 180px);
  padding-left: 86px;
  padding-right: 86px;
  padding-top: 0;
}

.hero-kicker,
.section-tag,
.banner-mini {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ccb98f;
}

.hero-stage h1,
.theme-classic h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.7rem, 4.2vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #f8f4ed;
}

.theme-classic h2 {
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.12;
  color: #252b24;
}

.hero-lead,
.copy-card p,
.newsletter-copy p,
.workshop-band-copy p,
.stock-copy p {
  max-width: 60ch;
  font-size: 0.95rem;
  line-height: 1.68;
  color: rgba(244, 239, 231, 0.82);
}

.hero-lead {
  margin: 16px 0 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0;
  margin-top: 0;
  background: transparent;
}

.story-grid.reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

.story-card {
  min-height: 360px;
}

.image-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.image-card::before,
.feature-banner::before,
.stock-card::before,
.workshop-band-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 24%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 28%);
  z-index: 1;
  pointer-events: none;
}

.image-card::after,
.feature-banner::after,
.stock-card::after,
.workshop-band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 -60px 80px rgba(7, 10, 9, 0.12);
  z-index: 1;
  pointer-events: none;
}

.story-image,
.feature-banner-media,
.stock-thumb,
.workshop-band-media {
  width: 100%;
  height: 100%;
  min-height: inherit;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 600ms ease, filter 350ms ease;
}

.story-image-defender {
  background-image: url("assets/defender-side-optimized.jpg");
}

.story-image-showroom {
  background-image: url("assets/range-rover-modern-optimized.jpg");
}

.copy-card {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 40px;
  background: linear-gradient(180deg, rgba(247, 243, 235, 0.95), rgba(239, 233, 223, 0.92));
  box-shadow: var(--shadow-strong);
}

.copy-card p {
  margin: 0;
  color: var(--muted);
}

.classic-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  color: var(--accent-deep);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(85, 96, 72, 0.34);
  padding-bottom: 6px;
}

.feature-banners {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  padding: 34px 28px 18px;
}

.feature-banner {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  background: #f4f0e8;
  box-shadow: var(--shadow-strong);
  border-radius: 18px;
}

.feature-banner::after {
  background: linear-gradient(180deg, rgba(7, 10, 9, 0.08), rgba(7, 10, 9, 0.72));
}

.feature-banner-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}

.feature-banner-copy strong {
  display: block;
  max-width: 28ch;
  color: #fff4e8;
  font-size: 0.96rem;
  line-height: 1.55;
}

.feature-workshop {
  background-image: url("assets/workshop-photo-optimized.jpg");
}

.feature-mountain {
  background-image: url("assets/range-rover-modern-optimized.jpg");
}

.feature-showcase {
  background-image: url("assets/hero-defender-optimized.jpg");
}

.inventory-section {
  padding: 36px 28px 18px;
}

.section-header {
  margin-bottom: 26px;
}

.section-header h2 {
  font-size: clamp(1.45rem, 2.2vw, 2.3rem);
}

.stock-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.stock-card {
  position: relative;
  background: linear-gradient(180deg, rgba(247, 243, 235, 0.96), rgba(239, 233, 223, 0.94));
  box-shadow: var(--shadow);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.stock-hover-card,
.shop-card-hover {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 16px;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(10, 14, 13, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.stock-card:hover .stock-hover-card,
.shop-card:hover .shop-card-hover {
  opacity: 1;
  transform: translateY(0);
}

.stock-thumb {
  min-height: 210px;
}

.thumb-one {
  background-image: url("assets/hero-defender-optimized.jpg");
}

.thumb-two {
  background-image: url("assets/range-rover-modern-optimized.jpg");
}

.thumb-three {
  background-image: url("assets/workshop-photo-optimized.jpg");
}

.stock-copy {
  padding: 22px;
}

.stock-copy h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #252b24;
}

.stock-copy p {
  margin: 0;
  color: var(--muted);
}

.workshop-band {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0;
  margin-top: 28px;
  background: transparent;
}

.workshop-band-media {
  position: relative;
  min-height: 340px;
  background-image: url("assets/workshop-photo-optimized.jpg");
}

.workshop-band-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 40px;
  background: linear-gradient(180deg, rgba(96, 108, 84, 0.94), rgba(70, 80, 62, 0.94));
  box-shadow: var(--shadow-strong);
}

.workshop-band-copy p {
  margin: 0;
  color: rgba(247, 243, 234, 0.82);
}

.workshop-band-copy h2 {
  color: #f7f3ea;
}

.sold-band {
  padding: 8px 0 14px;
}

.sold-band-inner {
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid rgba(35, 40, 34, 0.12);
  padding: 28px 28px 0;
}

.sold-band h2 {
  max-width: 16ch;
}

.newsletter-panel {
  padding: 30px 28px 54px;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: start;
}

.classic-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.classic-form label {
  display: grid;
  gap: 8px;
}

.classic-form span {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 239, 231, 0.62);
}

.classic-form input,
.classic-form textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid rgba(35, 40, 34, 0.12);
  background: rgba(255, 252, 248, 0.9);
  color: #232822;
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.classic-form .full-row {
  grid-column: 1 / -1;
}

.classic-form .button {
  width: fit-content;
  margin-top: 4px;
}

.site-footer {
  border-top: 1px solid rgba(35, 40, 34, 0.08);
  padding: 18px 0 28px;
  background: #d8d2c5;
}

.site-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-left: 28px;
  padding-right: 28px;
  font-size: 0.78rem;
  color: rgba(35, 40, 34, 0.58);
}

.story-grid:not(.reverse),
.story-grid.reverse,
.feature-banners,
.inventory-section,
.sold-band,
.workshop-band,
.newsletter-panel,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}

.image-card:hover .story-image,
.feature-banner:hover .feature-banner-media,
.stock-card:hover .stock-thumb,
.workshop-band:hover .workshop-band-media {
  transform: scale(1.03);
  filter: saturate(1.04) contrast(1.03);
}

.stock-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 72px rgba(14, 15, 13, 0.22);
}

.shop-body {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.45), transparent 28%),
    linear-gradient(180deg, #ece4d7 0%, #e1d8ca 48%, #ece5da 100%);
}

.shop-page {
  width: 100%;
}

.shop-hero {
  position: relative;
  min-height: 62svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding-top: 88px;
}

.shop-hero-media,
.shop-hero-overlay {
  position: absolute;
  inset: 0;
}

.shop-hero-media {
  background:
    linear-gradient(180deg, rgba(7, 10, 9, 0.2), rgba(7, 10, 9, 0.3)),
    url("assets/range-rover-modern-optimized.jpg") center 42%/cover no-repeat;
}

.shop-hero-overlay {
  background:
    linear-gradient(180deg, rgba(10, 12, 11, 0.14), rgba(10, 12, 11, 0.68)),
    linear-gradient(90deg, rgba(10, 12, 11, 0.6), rgba(10, 12, 11, 0.1) 56%, rgba(10, 12, 11, 0.36));
}

.shop-hero-inner,
.shop-filters,
.shop-category-strip,
.shop-grid-section {
  position: relative;
  z-index: 1;
  width: 100%;
}

.shop-hero-inner {
  padding: 0 48px 58px;
}

.shop-filters,
.shop-category-strip,
.shop-grid-section {
  padding-left: 28px;
  padding-right: 28px;
}

.shop-filters {
  padding-top: 30px;
  padding-bottom: 16px;
}

.shop-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(249, 245, 238, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.shop-filter-grid-extended {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shop-filter-grid label,
.shop-card-copy,
.shop-category-card {
  display: grid;
  gap: 8px;
}

.shop-filter-grid span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.shop-filter-grid select {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(35, 40, 34, 0.12);
  border-radius: 14px;
  background: rgba(255, 252, 248, 0.95);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.shop-filter-grid input {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(35, 40, 34, 0.12);
  border-radius: 14px;
  background: rgba(255, 252, 248, 0.95);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.shop-category-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 10px;
  padding-bottom: 12px;
}

.shop-category-card {
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(247, 243, 235, 0.95), rgba(239, 233, 223, 0.92));
  box-shadow: var(--shadow);
}

.shop-category-card strong {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #2a3028;
}

.shop-grid-section {
  padding-top: 16px;
  padding-bottom: 34px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.shop-card {
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(247, 243, 235, 0.96), rgba(239, 233, 223, 0.94));
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 64px rgba(14, 15, 13, 0.18);
}

.shop-card-detailed {
  position: relative;
}

.specs-section,
.contact-options,
.agenda-overview {
  padding: 30px 28px;
}

.specs-grid,
.contact-options,
.portal-grid,
.agenda-overview {
  display: grid;
  gap: 22px;
}

.specs-grid,
.contact-options,
.agenda-overview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.specs-card,
.contact-card,
.agenda-stat-card,
.info-panel-card,
.mini-status-card {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(247, 243, 235, 0.96), rgba(239, 233, 223, 0.94));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.specs-card {
  padding: 0;
  overflow: hidden;
}

.specs-card summary {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 22px;
  cursor: pointer;
}

.specs-card summary::-webkit-details-marker {
  display: none;
}

.specs-card summary strong {
  font-size: 1.02rem;
}

.spec-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 22px 22px;
}

.detail-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.detail-list-light {
  color: rgba(244, 239, 231, 0.88);
}

.contact-card,
.agenda-stat-card {
  padding: 24px;
}

.info-page {
  padding-bottom: 34px;
}

.page-hero {
  position: relative;
  min-height: 52svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding-top: 88px;
}

.page-hero-media,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 0 48px 42px;
}

.page-hero-contact .page-hero-media,
.page-hero-portal .page-hero-media {
  background:
    linear-gradient(180deg, rgba(7, 10, 9, 0.18), rgba(7, 10, 9, 0.3)),
    url("assets/workshop-photo-optimized.jpg") center 42%/cover no-repeat;
}

.page-hero-agenda .page-hero-media {
  background:
    linear-gradient(180deg, rgba(7, 10, 9, 0.18), rgba(7, 10, 9, 0.3)),
    url("assets/hero-defender-optimized.jpg") center 38%/cover no-repeat;
}

.page-hero-overlay {
  background:
    linear-gradient(180deg, rgba(10, 12, 11, 0.16), rgba(10, 12, 11, 0.68)),
    linear-gradient(90deg, rgba(10, 12, 11, 0.6), rgba(10, 12, 11, 0.14) 58%, rgba(10, 12, 11, 0.34));
}

.info-split,
.portal-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 28px;
}

.portal-grid-secondary {
  padding-top: 0;
}

.info-panel-card {
  padding: 26px;
}

.form-panel-luxury {
  background:
    linear-gradient(180deg, rgba(251, 248, 242, 0.98), rgba(239, 233, 223, 0.94));
}

.form-elevated {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 252, 248, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.classic-form select {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid rgba(35, 40, 34, 0.12);
  background: rgba(255, 252, 248, 0.9);
  color: #232822;
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.check-row {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.detail-stack {
  display: grid;
  gap: 16px;
}

.detail-stack strong {
  display: block;
  margin-bottom: 6px;
}

.detail-stack p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.slot-list {
  display: grid;
  gap: 12px;
}

.slot-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.slot-list-rich .slot-item {
  background: rgba(255, 252, 248, 0.72);
}

.dashboard-cards {
  display: grid;
  gap: 14px;
}

.mini-status-card {
  padding: 18px;
}

.mini-status-card strong {
  display: block;
  margin-bottom: 6px;
}

.mini-status-card span {
  color: var(--muted);
  line-height: 1.6;
}

.shop-card-media {
  min-height: 240px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.shop-media-one,
.shop-media-four {
  background-image: url("assets/hero-defender-optimized.jpg");
}

.shop-media-two,
.shop-media-five {
  background-image: url("assets/range-rover-modern-optimized.jpg");
}

.shop-media-three,
.shop-media-six {
  background-image: url("assets/workshop-photo-optimized.jpg");
}

.shop-card-copy {
  padding: 20px;
}

.shop-card-copy h3 {
  margin: 0;
  font-size: 1.02rem;
  color: #252b24;
}

.shop-card-copy p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}

.shop-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
}

.shop-contact-panel {
  padding-top: 8px;
}

@media (max-width: 980px) {
  .site-nav,
  .feature-banners,
  .stock-list,
  .shop-grid,
  .specs-grid,
  .contact-options,
  .portal-grid,
  .agenda-overview,
  .shop-category-strip,
  .shop-filter-grid,
  .newsletter-grid,
  .classic-form,
  .story-grid,
  .story-grid.reverse,
  .workshop-band {
    grid-template-columns: 1fr;
  }

  .site-header-inner,
  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.78rem;
  }

  .nav-dropdown {
    left: 50%;
    transform: translate(-50%, 10px);
  }

  .has-dropdown:hover .nav-dropdown,
  .has-dropdown:focus-within .nav-dropdown {
    transform: translate(-50%, 0);
  }

  .site-nav-left,
  .site-nav-right {
    justify-content: center;
  }

  .site-logo img {
    width: 160px;
  }

  .hero-stage-inner {
    min-height: calc(100svh - 72px);
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: clamp(84px, 14svh, 124px);
  }

  .copy-card,
  .workshop-band-copy {
    padding: 34px 24px;
  }

  .feature-banner {
    min-height: 280px;
  }

  .shop-hero-inner {
    padding: 0 24px 42px;
  }

  .page-hero-inner,
  .info-split,
  .portal-grid,
  .contact-options,
  .agenda-overview,
  .specs-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .spec-columns {
    grid-template-columns: 1fr;
  }
}
