/*
Theme Name: Lotus Cars v4
Theme URI: https://www.lotuscars.com
Author: Lotus Cars Clone
Author URI: https://www.lotuscars.com
Description: Pixel-perfect WordPress clone of lotuscars.com (India). V5: curtain menu rebuilt from live-site measurements - 42% yellow panel, 20px extra-light model items with chevrons, 14px primary links, real Lotus SVG icons, black LOCATION region bar with yellow globe, correct z-index layering (panel covers header).
Version: 5.0.0
Requires at least: 5.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lotus-cars-v4
Tags: one-column, custom-menu, featured-images, theme-options
*/

/* ============================================
   CSS RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Overpass', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  font-weight: 300;
  color: #000;
  background: #000;
  line-height: 1.5;
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   FONTS
   ============================================ */
@font-face {
  font-family: 'Overpass';
  font-weight: 200;
  font-style: normal;
  src: url('https://fonts.googleapis.com/css2?family=Overpass:wght@200;300;400;500;600;700;800;900&display=swap');
}

/* ============================================
   VARIABLES
   ============================================ */
:root {
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-yellow: #FDEF00;
  --color-grey-dark: #1a1a1a;
  --color-grey-mid: #333333;
  --color-grey-light: #666666;
  --color-grey-border: #404040;
  --font-light: 200;
  --font-extralight: 200;
  --font-regular: 300;
  --font-medium: 400;
  --font-bold: 600;
  --font-extrabold: 700;
  --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --header-height: 70px;
  --container-max: 1600px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.theme-black {
  background: var(--color-black);
  color: var(--color-white);
}

.theme-white {
  background: var(--color-white);
  color: var(--color-black);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   REGION SELECTOR OVERLAY
   ============================================ */
.region-selector-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.region-selector-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.region-selector-overlay .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.region-selector-overlay .close-btn svg {
  width: 24px;
  height: 24px;
}

.region-selector-overlay .region-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.region-selector-overlay .region-icon svg {
  width: 100%;
  height: 100%;
  fill: white;
}

.region-selector-overlay p {
  color: #999;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-align: center;
  max-width: 400px;
}

.region-selector-form {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.region-select-wrapper {
  position: relative;
}

.region-select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid #555;
  color: white;
  padding: 12px 48px 12px 20px;
  font-family: 'Overpass', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  min-width: 200px;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.region-select-wrapper select:focus {
  outline: none;
  border-color: var(--color-yellow);
}

.region-select-wrapper::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #999;
  pointer-events: none;
}

.btn-go {
  background: var(--color-yellow);
  color: #000;
  padding: 12px 32px;
  font-family: 'Overpass', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-go:hover {
  background: #e6db00;
}

.btn-go svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: all var(--transition-fast);
}

.site-header.theme-transparent {
  background: transparent;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo a {
  display: flex;
  align-items: center;
}

.header-logo svg {
  width: 112px;
  height: 25px;
  fill: white;
  transition: fill var(--transition-fast);
}

.site-header.scrolled .header-logo svg {
  fill: white;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-my-lotus {
  color: white;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.header-my-lotus:hover {
  opacity: 1;
}

.hamburger-btn {
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 6px;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 1px;
  background: white;
  transition: all var(--transition-fast);
}

.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================================
   V5 CURTAIN MENU — 42% yellow panel from right
   Pixel-perfect replica of lotuscars.com
   Layering: header z11 / mask z11 / panel z12
   ============================================ */

/* Mask: dims the entire page (incl. header) behind menu */
.curtain-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 11;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.curtain-mask.active {
  opacity: 1;
  pointer-events: all;
}

/* Menu panel: 42% width, yellow, from right */
.curtain-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 42%;
  min-width: 400px;
  height: 100%;
  z-index: 12;
  background: #FDEF00;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.curtain-menu.active {
  transform: translateX(0);
}

/* Panel header: 64px bar, close button 20px from top-right */
.curtain-menu__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 15;
}
.curtain-menu__close {
  width: 24px;
  height: 24px;
  cursor: pointer;
  color: #000;
}
.curtain-menu__close svg {
  width: 24px;
  height: 24px;
  display: block;
}
.curtain-menu__close:hover {
  opacity: 0.5;
}

/* Content wrapper: 50px top / 10% left indent (80px at 803px panel) */
.curtain-menu__content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 50px 0 0 10%;
  overflow: hidden;
}

/* Main menu level */
.curtain-menu__content-main {
  display: block;
  height: 100%;
}
.curtain-menu__main-menu {
  padding-top: 40px;
}

/* Menu items container: flex column, pulled up 12px */
.curtain-menu__menus {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: -12px;
}

/* Invisible group separators (30px tall, matching lotus spacers) */
.menu-spacer {
  height: 30px;
  width: 5px;
}

/* ---- Menu items ---- */
.menu-item {
  font-family: 'Overpass', sans-serif;
  color: #000;
  text-transform: uppercase;
  height: 30px;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  cursor: pointer;
  border: none;
  background: none;
  text-align: left;
  transition: opacity 0.2s;
}
.menu-item:hover {
  opacity: 0.5;
}

/* Car models: 20px extra-light headline style, 8px icon gap */
.menu-item--model {
  font-size: 20px;
  font-weight: 200;
  line-height: 26px;
  letter-spacing: normal;
  gap: 8px;
}
.menu-item--model .menu-item__text {
  padding-top: 2px;
}
.menu-item--model .menu-item__chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Primary links: 14px, 16px icon gap */
.menu-item--primary {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: normal;
  gap: 16px;
}
.menu-item--primary .menu-item__chevron-sm {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: #000;
}
.menu-item--with-icon {
  text-decoration: none;
  color: #000;
}
.menu-item--with-icon img {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ---- Region bar: black strip, always visible at panel bottom ---- */
.curtain-menu__region-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  background: #000;
  z-index: 10;
}
.curtain-menu__region-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.curtain-menu__region-icon svg {
  width: 24px;
  height: 24px;
  fill: #FDEF00;
  display: block;
}
.curtain-menu__region-label {
  font-family: 'Overpass', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #FFF;
  margin-left: 24px;
}
.curtain-menu__region-cur {
  font-family: 'Overpass', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #FFF;
  text-transform: uppercase;
  margin-left: 8px;
}
.curtain-menu__region-chevron {
  width: 24px;
  height: 24px;
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.curtain-menu__region-chevron svg {
  width: 24px;
  height: 24px;
  fill: #FDEF00;
  display: block;
}

/* ---- Submenu level ---- */
/* Aligned to content-box (below 50px top padding, right of 10% left padding) */
.curtain-menu__submenu {
  position: absolute;
  top: 50px;
  left: 10%;
  right: 0;
  bottom: 0;
  background: #FDEF00;
  padding: 100px 0 52px 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.curtain-menu__submenu.active {
  transform: translateX(0);
}

/* Back button */
.curtain-menu__submenu-back {
  font-family: 'Overpass', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  margin-bottom: 16px;
}
.curtain-menu__submenu-back:hover {
  opacity: 0.5;
}
.curtain-menu__submenu-back svg {
  width: 16px;
  height: 16px;
  fill: #000;
}

/* Submenu links */
.curtain-menu__submenu-buttons {
  display: flex;
  flex-direction: column;
}
.submenu-link {
  font-family: 'Overpass', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  text-transform: uppercase;
  line-height: 21px;
  height: 30px;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
  padding: 0;
}
.submenu-link:hover {
  opacity: 0.5;
}

/* ============================================
   V4 MODELS SECTION
   Eletre featured full-width, rest with text below
   ============================================ */
.models-section-v {
  background: #000;
  padding: 80px 0 0;
}

/* Featured model card (Eletre) — image with overlay text */
.model-card-featured {
  width: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.model-card-featured__inner {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
}
.model-card-featured__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.model-card-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}
.model-card-featured:hover .model-card-featured__image img {
  transform: scale(1.02);
}
.model-card-featured__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 80px;
  z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}
.model-card-featured__desc {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 500px;
}
.model-card-featured__actions {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* Standard model card — image top, text below */
.model-card {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #222;
}
.model-card__inner {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 0 80px;
}
.model-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.model-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}
.model-card:hover .model-card__image img {
  transform: scale(1.02);
}
.model-card__info {
  padding: 32px 0;
}
.model-card__name {
  color: #FFF;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.model-card__desc {
  color: #999;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 20px;
}
.model-card__actions {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* EXPLORE button: outlined/ghost style */
.btn-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-explore:hover {
  border-color: #FFF;
}

/* CONFIGURE: text link with arrow */
.btn-configure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 0;
  transition: opacity 0.2s;
  cursor: pointer;
}
.btn-configure:hover {
  opacity: 0.6;
}
.btn-configure svg {
  width: 14px;
  height: 14px;
 }

/* V4 Responsive */
@media (max-width: 1024px) {
  .model-card__inner { padding: 0 40px; }
  .model-card-featured__info { padding: 40px; }
}
@media (max-width: 768px) {
  .curtain-menu { width: 100%; min-width: unset; }
  .curtain-menu__content { padding: 50px 0 0 24px; }
  .curtain-menu__submenu { top: 50px; left: 24px; padding: 80px 0 52px 0; }
  .model-card__inner { padding: 0 24px; }
  .model-card-featured__info { padding: 30px 24px; }
  .model-card-featured__inner { height: 60vh; min-height: 350px; }
}
@media (max-width: 480px) {
  .model-card-featured__inner { height: 50vh; min-height: 300px; }
}

/* ============================================
   HERO LANDING SECTION
   ============================================ */
.hero-landing {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-landing-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-landing-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-landing-content {
  position: relative;
  z-index: 2;
  padding: 80px;
  padding-bottom: 60px;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.hero-landing-content h1 {
  color: var(--color-yellow);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-landing-content .hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-discover-link,
.hero-discover-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-yellow);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 40px;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.hero-discover-link:hover,
.hero-discover-btn:hover {
  background: #e6db00;
}

.hero-discover-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.hero-discover-link:hover svg {
  transform: translateX(4px);
}

.hero-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* MODELS SECTION (see v4 CSS above) */
   ============================================ */
  background: var(--color-black);
  padding: 80px 0 0;
}

.models-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.models-section-header .section-label {
  color: var(--color-yellow);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.models-section-header h2 {
  color: white;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 300;
  line-height: 1.4;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   HERITAGE VIDEO SECTION
   ============================================ */
.heritage-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #0a0a0a;
}

.heritage-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.heritage-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heritage-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.heritage-content {
  position: relative;
  z-index: 2;
  padding: 80px;
  padding-bottom: 60px;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.heritage-title {
  color: white;
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.heritage-year {
  color: var(--color-yellow);
}

.heritage-title span {
  display: block;
}

.heritage-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 300;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 32px;
}

.heritage-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: all var(--transition-fast);
}

.heritage-learn-more:hover {
  border-bottom-color: white;
}

.heritage-learn-more svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.heritage-learn-more:hover svg {
  transform: translateX(4px);
}

/* Video Play Button Overlay */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.video-play-btn:hover {
  border-color: white;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg {
  width: 24px;
  height: 24px;
  fill: white;
  margin-left: 4px;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
  position: relative;
  padding: 120px 40px;
  background: var(--color-black);
  overflow: hidden;
}

.newsletter-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.newsletter-image {
  flex: 1;
  max-width: 400px;
}

.newsletter-image img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.6;
}

.newsletter-content {
  flex: 1;
}

.newsletter-title {
  color: white;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 200;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

.newsletter-title strong {
  font-weight: 600;
}

.newsletter-desc {
  color: #999;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 440px;
}

.newsletter-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: all var(--transition-fast);
}

.newsletter-link:hover {
  border-bottom-color: white;
}

.newsletter-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.newsletter-link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #000;
  border-top: 1px solid #1a1a1a;
  padding: 80px 40px 40px;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.footer-logo-icon {
  width: 64px;
  height: 64px;
  margin-right: 24px;
}

.footer-logo-icon svg {
  width: 100%;
  height: 100%;
}

.footer-logo-text svg {
  width: 140px;
  height: 32px;
  fill: white;
}

.footer-menus {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-menu-category h4 {
  color: #666;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-menu-category ul li {
  margin-bottom: 12px;
}

.footer-menu-category ul li a {
  color: #999;
  font-size: 14px;
  font-weight: 300;
  transition: color var(--transition-fast);
}

.footer-menu-category ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-social-icons {
  display: flex;
  gap: 16px;
}

.footer-social-icons a {
  color: #666;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-icons a:hover {
  color: white;
}

.footer-social-icons svg {
  width: 20px;
  height: 20px;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  color: #666;
  font-size: 12px;
  font-weight: 300;
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: #999;
}

.footer-region-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 12px;
  font-weight: 300;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.footer-region-selector:hover {
  color: white;
}

.footer-region-selector svg {
  width: 16px;
  height: 16px;
}

.footer-disclaimer {
  color: #444;
  font-size: 11px;
  font-weight: 300;
  line-height: 1.6;
  margin-top: 32px;
  max-width: 900px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }

/* Scroll-triggered animation base */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1a1a1a;
  padding: 20px 40px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid #333;
}

.cookie-banner p {
  color: #999;
  font-size: 13px;
  font-weight: 300;
  flex: 1;
  min-width: 280px;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  font-family: 'Overpass', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.cookie-btn-accept {
  background: var(--color-yellow);
  color: #000;
}

.cookie-btn-accept:hover {
  background: #e6db00;
}

.cookie-btn-reject {
  background: transparent;
  color: #999;
  border: 1px solid #555;
}

.cookie-btn-reject:hover {
  color: white;
  border-color: #999;
}

.cookie-btn-settings {
  background: transparent;
  color: #999;
  text-decoration: underline;
}

.cookie-btn-settings:hover {
  color: white;
}

.cookie-banner.hidden {
  display: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    height: 70vh;
    min-height: 400px;
  }
    padding: 40px;
  }

  .footer-menus {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-inner {
    flex-direction: column;
    gap: 40px;
  }

  .newsletter-image {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .container {
    padding: 0 20px;
  }

  .site-header {
    padding: 0 20px;
  }

  .hero-landing-content {
    padding: 40px 24px;
    padding-bottom: 40px;
  }

  .hero-landing-content h1 {
    font-size: 28px;
  }
    height: 60vh;
    min-height: 350px;
  }
    padding: 30px 24px;
  }
    font-size: 22px;
  }

  .heritage-content {
    padding: 40px 24px;
  }

  .heritage-title {
    font-size: 28px;
  }

  .newsletter-section {
    padding: 80px 20px;
  }

  .site-footer {
    padding: 60px 20px 30px;
  }

  .footer-menus {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    padding: 16px 20px;
  }

  .cookie-banner p {
    font-size: 12px;
  }
    padding: 100px 24px 40px;
  }
    font-size: 28px;
  }
    right: 20px;
    top: 20px;
  }
}

@media (max-width: 480px) {
  .hero-landing-content h1 {
    font-size: 24px;
  }
    height: 50vh;
    min-height: 300px;
  }
    font-size: 18px;
  }
    font-size: 13px;
  }
    font-size: 11px;
    padding: 10px 20px;
  }

  .newsletter-title {
    font-size: 24px;
  }

  .footer-menus {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   WORDPRESS SPECIFIC OVERRIDES
   ============================================ */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

/* Hide WordPress admin bar on front-end */
html { margin-top: 0 !important; }
#wpadminbar { display: none; }

/* Ensure no WP default styles leak */
.entry-content p {
  margin-bottom: 0;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ============================================
   MODEL PAGES - HERO
   ============================================ */
.model-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.model-hero--dark {
  background: #0a0a0a;
}

.model-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.model-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.model-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px;
  padding-bottom: 60px;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.model-hero-label {
  color: var(--color-yellow);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.model-hero-content h1 {
  color: white;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.model-hero-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
}

.model-hero-actions {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

/* ============================================
   PERFORMANCE NUMBERS
   ============================================ */
.perf-numbers-section {
  background: var(--color-black);
  padding: 80px 0;
  border-bottom: 1px solid #1a1a1a;
}

.perf-numbers-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.perf-number-item {
  padding: 40px 20px;
  border-right: 1px solid #222;
}

.perf-number-item:last-child {
  border-right: none;
}

.perf-number-value {
  color: white;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 200;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.perf-number-unit {
  color: var(--color-yellow);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.perf-number-label {
  color: #666;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  background: var(--color-black);
  padding: 100px 0;
}

.features-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-header h2 {
  color: white;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.3;
  margin-top: 12px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 48px 40px;
  border: 1px solid #222;
  transition: all var(--transition-slow);
}

.feature-card:hover {
  border-color: #444;
  background: #0a0a0a;
}

.feature-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  color: var(--color-yellow);
}

.feature-card-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  color: white;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.feature-card p {
  color: #999;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  background: var(--color-black);
  padding: 80px 0 100px;
}

.gallery-header {
  margin-bottom: 48px;
}

.gallery-header h2 {
  color: white;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  margin-top: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item-large {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.gallery-item-overlay span {
  color: white;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================
   MODEL BANNER SECTION
   ============================================ */
.model-banner-section {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.model-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.model-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-banner-content {
  position: relative;
  z-index: 2;
  padding: 80px;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.model-banner-content h2 {
  color: white;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 200;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.model-banner-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 300;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 28px;
}

/* ============================================
   MODEL CTA SECTION
   ============================================ */
.model-cta-section {
  background: var(--color-grey-dark);
  padding: 100px 0;
}

.model-cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.model-cta-inner h2 {
  color: white;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 200;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.model-cta-inner p {
  color: #999;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 36px;
}

.model-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-block;
  background: var(--color-yellow);
  color: #000;
  padding: 16px 40px;
  font-family: 'Overpass', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cta-btn-primary:hover {
  background: #e6db00;
}

.cta-btn-secondary {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 16px 40px;
  font-family: 'Overpass', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #555;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cta-btn-secondary:hover {
  border-color: white;
}

/* ============================================
   STORY / HERITAGE / DISCOVER PAGES
   ============================================ */
.story-philosophy-section {
  background: var(--color-black);
  padding: 120px 0;
  text-align: center;
}

.story-quote {
  max-width: 800px;
  margin: 0 auto;
}

.story-quote blockquote {
  color: white;
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 200;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: 1px;
}

.story-quote cite {
  display: block;
  margin-top: 24px;
  color: var(--color-yellow);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-style: normal;
}

.story-era-section {
  background: var(--color-black);
  padding: 100px 0;
}

.story-era-section--alt {
  background: var(--color-grey-dark);
  padding: 100px 0;
}

.story-era-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.story-era-text {
  max-width: 700px;
  margin-bottom: 48px;
}

.story-era-text h2 {
  color: white;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 200;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.story-era-text p {
  color: #999;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 16px;
}

.story-era-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.story-stat-item {
  padding: 24px;
  border: 1px solid #222;
  text-align: center;
}

.story-stat-item .stat-value {
  color: var(--color-yellow);
  font-size: 28px;
  font-weight: 200;
  display: block;
  margin-bottom: 8px;
}

.story-stat-item .stat-label {
  color: #666;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.story-cars-grid,
.story-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.story-car-card {
  border: 1px solid #222;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.story-car-card:hover {
  border-color: #444;
}

.story-car-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.story-car-card-body {
  padding: 24px;
}

.story-car-card-body h3 {
  color: white;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.story-car-card-body p {
  color: #999;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

/* Heritage Cards */
.heritage-card {
  padding: 40px;
  border: 1px solid #222;
  transition: border-color var(--transition-fast);
}

.heritage-card:hover {
  border-color: #444;
}

.heritage-card h3 {
  color: white;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.heritage-card-years {
  color: var(--color-yellow);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}

.heritage-card p {
  color: #999;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

/* Championships Timeline */
.championships-timeline {
  display: grid;
  gap: 0;
}

.championship-timeline-item {
  display: grid;
  grid-template-columns: 100px 1px 1fr;
  gap: 24px;
  padding: 16px 0;
}

.championship-year {
  color: var(--color-yellow);
  font-size: 24px;
  font-weight: 200;
  text-align: right;
  padding-right: 24px;
}

.championship-divider {
  background: #333;
  width: 1px;
}

.championship-detail h4 {
  color: white;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.championship-detail p {
  color: #666;
  font-size: 13px;
  font-weight: 300;
}

/* Story Numbers */
.story-numbers-section {
  background: var(--color-grey-dark);
  padding: 80px 0;
  border-top: 1px solid #222;
}

.story-numbers-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
}

.story-number-value {
  color: var(--color-yellow);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 200;
  line-height: 1;
  margin-bottom: 8px;
}

.story-number-label {
  color: #666;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* F1 Section */
.story-f1-section {
  position: relative;
  padding: 100px 0;
  background: #0a0a0a;
}

.story-f1-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   LOTUS CENTRES PAGE
   ============================================ */
.centres-section {
  background: var(--color-black);
  padding: 80px 0 100px;
}

.centres-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.centres-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.centre-card {
  border: 1px solid #222;
  padding: 40px;
  transition: border-color var(--transition-fast);
}

.centre-card:hover {
  border-color: #444;
}

.centre-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #222;
}

.centre-card-header h3 {
  color: white;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.centre-badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--color-yellow);
  color: var(--color-yellow);
}

.centre-card-body {
  margin-bottom: 28px;
}

.centre-info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.centre-info-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #666;
}

.centre-info-item p {
  color: #999;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.centre-card-actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* ============================================
   KEEP ME INFORMED PAGE
   ============================================ */
.kmi-form-section {
  background: var(--color-black);
  padding: 100px 0;
}

.kmi-form-inner {
  max-width: 700px;
  margin: 0 auto;
}

.kmi-form-card {
  border: 1px solid #222;
  padding: 60px 48px;
}

.kmi-form-card h2 {
  color: white;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.kmi-form-card > p {
  color: #999;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 36px;
}

.kmi-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.kmi-form-group {
  margin-bottom: 24px;
}

.kmi-form-group label {
  display: block;
  color: #999;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.kmi-form-group input,
.kmi-form-group select {
  width: 100%;
  padding: 14px 16px;
  background: #111;
  border: 1px solid #333;
  color: white;
  font-family: 'Overpass', sans-serif;
  font-size: 14px;
  font-weight: 300;
  transition: border-color var(--transition-fast);
  outline: none;
}

.kmi-form-group input:focus,
.kmi-form-group select:focus {
  border-color: var(--color-yellow);
}

.kmi-form-group input::placeholder {
  color: #555;
}

.kmi-form-group select option {
  background: #111;
  color: white;
}

.kmi-checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.kmi-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #999;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
}

.kmi-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-yellow);
}

.kmi-checkbox-label a {
  color: var(--color-yellow);
  text-decoration: underline;
}

.kmi-consent {
  margin-bottom: 32px;
}

.kmi-submit-btn {
  width: 100%;
  padding: 18px;
  font-size: 14px;
  text-align: center;
}

/* ============================================
   CONTACT / FORM PAGES
   ============================================ */
.contact-form-section,
.test-drive-form-section {
  background: var(--color-black);
  padding: 100px 0;
}

.contact-form-inner,
.test-drive-form-inner {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-card {
  border: 1px solid #222;
  padding: 60px 48px;
}

.contact-form-card h2 {
  color: white;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-form-card > p {
  color: #999;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 36px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: #111;
  border: 1px solid #333;
  color: white;
  font-family: 'Overpass', sans-serif;
  font-size: 14px;
  font-weight: 300;
  transition: border-color var(--transition-fast);
  outline: none;
  margin-bottom: 20px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-yellow);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #555;
}

.contact-form select option {
  background: #111;
  color: white;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form label {
  display: block;
  color: #999;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ============================================
   LOGO TEXT
   ============================================ */
.logo-text {
  color: white;
  font-family: 'Overpass', sans-serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  text-decoration: none;
}

.site-header.scrolled .logo-text {
  color: var(--color-yellow);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
  background: var(--color-black);
  padding: 80px 0 100px;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq-item {
  border-bottom: 1px solid #222;
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
}

.faq-question span {
  color: white;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  color: #666;
  transition: transform var(--transition-fast), color var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--color-yellow);
}

.faq-answer {
  display: none;
  padding-bottom: 24px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  color: #999;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
}

/* ============================================
   PRESS PAGE
   ============================================ */
.press-articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.press-article-card {
  border: 1px solid #222;
  padding: 40px;
  transition: border-color var(--transition-fast);
}

.press-article-card:hover {
  border-color: #444;
}

.press-article-date {
  color: #666;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.press-article-card h3 {
  color: white;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.press-article-card p {
  color: #999;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 20px;
}

.press-article-card a {
  color: white;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity var(--transition-fast);
}

.press-article-card a:hover {
  opacity: 0.7;
}

.press-article-card a svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   CHARGING SPECS TABLE
   ============================================ */
.charging-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
}

.charging-specs-table thead th {
  color: #666;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 20px;
  border-bottom: 1px solid #333;
  text-align: left;
}

.charging-specs-table tbody td {
  color: #999;
  font-size: 15px;
  font-weight: 300;
  padding: 20px;
  border-bottom: 1px solid #1a1a1a;
}

.charging-specs-table tbody td:first-child {
  color: white;
  font-weight: 400;
}

/* ============================================
   STEPPER / HOW IT WORKS
   ============================================ */
.stepper-section {
  background: var(--color-black);
  padding: 80px 0 100px;
}

.stepper-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.stepper-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.stepper-item {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid #222;
}

.stepper-number {
  color: var(--color-yellow);
  font-size: 48px;
  font-weight: 200;
  margin-bottom: 20px;
}

.stepper-item h3 {
  color: white;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.stepper-item p {
  color: #999;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================
   WARRANTY CARDS
   ============================================ */
.warranty-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.warranty-card {
  border: 1px solid #222;
  padding: 40px;
  text-align: center;
  transition: border-color var(--transition-fast);
}

.warranty-card:hover {
  border-color: #444;
}

.warranty-card h3 {
  color: white;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.warranty-card .warranty-period {
  color: var(--color-yellow);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
  display: block;
}

.warranty-card ul {
  text-align: left;
  list-style: none;
}

.warranty-card ul li {
  color: #999;
  font-size: 14px;
  font-weight: 300;
  padding: 8px 0;
  border-bottom: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.warranty-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   COVERAGE GRID
   ============================================ */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.coverage-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid #222;
  color: #999;
  font-size: 14px;
  font-weight: 300;
}

.coverage-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-yellow);
  flex-shrink: 0;
}

/* ============================================
   ADDITIONAL STORY / PAGE COMPONENTS
   ============================================ */

/* Story Innovation Grid */
.story-innovation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* Individual car entries in story grid */
.story-car-year {
  color: var(--color-yellow);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.story-car-name {
  color: white;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.story-car-desc {
  color: #999;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

/* Quote components */
.story-quote-mark {
  color: var(--color-yellow);
  font-size: 72px;
  font-weight: 200;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.story-quote-text {
  color: white;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 200;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

.story-quote-author {
  display: block;
  margin-top: 24px;
  color: var(--color-yellow);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-style: normal;
}

/* Vision80 Pillars */
.story-vision80-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.story-pillar-icon {
  width: 48px;
  height: 48px;
  color: var(--color-yellow);
  margin-bottom: 20px;
}

.story-pillar-icon svg {
  width: 100%;
  height: 100%;
}

/* Modern Cars Grid items */
.story-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.story-modern-name {
  color: white;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.story-modern-label {
  color: var(--color-yellow);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.story-modern-desc {
  color: #999;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

.story-modern-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.story-modern-info {
  padding: 0 4px;
}

/* Championships Subtitle */
.championships-subtitle {
  color: #666;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 32px;
  text-align: center;
}

/* FAQ toggle (driver-support inline variant) */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  border-bottom: 1px solid #222;
  color: white;
  font-family: 'Overpass', sans-serif;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  text-align: left;
  padding: 24px 0;
  transition: color var(--transition-fast);
}

.faq-toggle:hover {
  color: var(--color-yellow);
}

.faq-toggle svg {
  width: 20px;
  height: 20px;
  color: #666;
  transition: transform var(--transition-fast), color var(--transition-fast);
  flex-shrink: 0;
}

.faq-open .faq-toggle svg {
  transform: rotate(45deg);
  color: var(--color-yellow);
}

.faq-open .faq-answer {
  display: block;
}

/* Step connector */
.step-connector {
  position: absolute;
  top: 76px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: #333;
  display: none;
}

@media (min-width: 769px) {
  .stepper-item:not(:last-child) .step-connector {
    display: block;
  }
}

/* ============================================
   RESPONSIVE - NEW PAGES
   ============================================ */
@media (max-width: 1024px) {
  .perf-numbers-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .perf-number-item {
    border-bottom: 1px solid #222;
  padding: 32px 16px;
  }
  .perf-number-item:nth-child(2) {
    border-right: none;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  padding: 0 40px;
  }
  .gallery-item-large {
    grid-row: auto;
  }
  .centres-grid {
    grid-template-columns: 1fr;
  }
  .warranty-cards-grid {
    grid-template-columns: 1fr;
  }
  .press-articles-grid {
    grid-template-columns: 1fr;
  }
  .stepper-grid {
    grid-template-columns: 1fr;
  }
  .coverage-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .model-hero-content {
    padding: 40px 24px;
  }
  .perf-numbers-section {
    padding: 60px 0;
  }
  .perf-number-value {
    font-size: 28px;
  }
  .features-section,
  .gallery-section,
  .kmi-form-section,
  .contact-form-section,
  .faq-section {
    padding: 60px 0;
  }
  .feature-card {
    padding: 32px 24px;
  }
  .gallery-grid {
    padding: 0 20px;
  }
  .model-cta-section {
    padding: 60px 0;
  }
  .kmi-form-card,
  .contact-form-card {
    padding: 40px 24px;
  }
  .kmi-form-row {
    grid-template-columns: 1fr;
  }
  .kmi-checkbox-group {
    grid-template-columns: 1fr;
  }
  .centre-card {
    padding: 24px;
  }
  .championship-timeline-item {
    grid-template-columns: 60px 1px 1fr;
    gap: 12px;
  }
  .championship-year {
    font-size: 16px;
  padding-right: 12px;
  }
  .story-era-content {
    padding: 0 20px;
  }
  .stepper-inner {
    padding: 0 20px;
  }
  .faq-inner {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .model-hero-content h1 {
    font-size: 24px;
  }
  .perf-numbers-inner {
    grid-template-columns: 1fr 1fr;
  }
  .perf-number-item {
    padding: 20px 12px;
  }
  .feature-card h3,
  .centre-card-header h3 {
    font-size: 14px;
  }
  .model-cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    text-align: center;
  }
}
