
:root {
  --bg: #040404;
  --panel: #0a0a0a;
  --panel-2: #101010;
  --line: rgba(212, 175, 55, .20);
  --line-strong: rgba(212, 175, 55, .42);
  --gold: #d4af37;
  --gold-2: #f0d682;
  --text: #ffffff;
  --muted: #dadada;
  --shadow: 0 28px 80px rgba(0, 0, 0, .48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

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

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

.shell {
  width: min(1280px, calc(100% - 32px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 12px 18px;
  background: linear-gradient(180deg, rgba(0,0,0,.90), rgba(0,0,0,.46));
  border-bottom: 1px solid rgba(212,175,55,.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: min(340px, 54vw);
  max-height: 50px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
}

.whatsapp-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(212,175,55,.30));
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
}

.mobile-menu {
  position: fixed;
  top: 86px;
  left: 16px;
  right: 16px;
  z-index: 59;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(10,10,10,.97);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: .22s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu a {
  display: block;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.mobile-cta {
  margin-top: 8px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #080808 !important;
  font-weight: 900;
  text-align: center;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

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

.hero-bg {
  background: url("assets/optimized/hero-clean.webp") center 62% / cover no-repeat;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.28) 56%, rgba(0,0,0,.04) 100%),
    linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.10) 42%, rgba(0,0,0,.92) 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 560px) 1fr;
  min-height: 100svh;
  align-items: start;
  padding-top: 126px;
  padding-bottom: 120px;
}

.hero-content {
  padding-top: 20px;
}

.kicker {
  margin: 0 0 18px;
  color: var(--gold-2);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  margin-right: 12px;
  vertical-align: middle;
  background: var(--gold);
}

.hero h1 {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(42px, 6.3vw, 98px);
  font-weight: 900;
  line-height: .90;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.gold-line {
  display: block;
  width: fit-content;
  color: transparent;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  background-clip: text;
  -webkit-background-clip: text;
}

.lede {
  max-width: 420px;
  margin: 24px 0 0;
  color: #f0f0f0;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.38;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: min(430px, 100%);
  margin-top: 34px;
}

/* Shared CTA */
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  transition: transform .18s ease, border-color .18s ease;
}

.cta:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.cta img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.cta.primary {
  color: #080808;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.cta.primary img {
  opacity: .74;
  filter: brightness(.20) contrast(1.35);
}

.cta.secondary {
  color: #fff;
  background: rgba(0,0,0,.52);
}

.cta.secondary img {
  filter: drop-shadow(0 0 6px rgba(212,175,55,.22));
}

/* USP */
.usp {
  position: relative;
  z-index: 4;
  margin-top: -68px;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(8,8,8,.94), rgba(11,11,11,.98));
  box-shadow: var(--shadow);
}

.usp-grid article {
  position: relative;
  padding: 28px 22px;
  text-align: center;
}

.usp-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 18%;
  right: 0;
  width: 1px;
  background: rgba(212,175,55,.16);
}

.usp-grid img,
.why-grid img {
  filter: drop-shadow(0 0 12px rgba(212,175,55,.22));
}

.usp-grid img {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.usp-grid h3 {
  margin: 0;
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.06;
  text-transform: uppercase;
}

.usp-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.35;
}

/* Sections */
.vehicles,
.why,
.contact {
  padding-top: 44px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-head h2,
.why h2,
.contact h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.pill {
  padding: 14px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-text {
  max-width: 760px;
  margin: 14px 0 0;
  color: #dfdfdf;
  font-size: 20px;
  line-height: 1.45;
}

/* Vehicles */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.vehicle-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  box-shadow: var(--shadow);
}

.vehicle-media {
  position: relative;
  height: 286px;
  background:
    radial-gradient(circle at 50% 100%, rgba(212,175,55,.10), transparent 50%),
    linear-gradient(180deg, #111, #080808);
}

.vehicle-media img {
  width: 100%;
  height: 100%;
  padding: 18px 16px 10px;
  object-fit: contain;
  object-position: center;
}

.vehicle-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 9px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(0,0,0,.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.vehicle-body {
  padding: 22px;
}

.vehicle-body h3 {
  margin: 0;
  font-size: clamp(26px, 2vw, 38px);
  line-height: 1.1;
}

.vehicle-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.vehicle-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  color: #ececec;
  font-size: 14px;
}

.vehicle-meta img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

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

.vehicle-footer strong {
  color: var(--gold-2);
  font-size: clamp(30px, 2.4vw, 42px);
  line-height: 1;
}

.vehicle-footer a {
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.why-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  box-shadow: var(--shadow);
}

.why-grid img {
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  object-fit: contain;
}

.why-grid h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
}

.why-grid p {
  margin: 0;
  color: #dfdfdf;
  font-size: 16px;
  line-height: 1.45;
}

/* Contact */
.contact {
  padding-bottom: 42px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 12%, rgba(212,175,55,.10), transparent 32%),
    linear-gradient(180deg, var(--panel), var(--panel-2));
  box-shadow: var(--shadow);
}

.contact-copy p:last-child {
  margin: 12px 0 0;
  color: #dcdcdc;
  font-size: 18px;
  line-height: 1.45;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0 34px;
  border-top: 1px solid rgba(212,175,55,.10);
}

.footer-brand img {
  width: min(250px, 42vw);
}

.footer-brand p {
  margin: 10px 0 0;
  color: #d6d6d6;
}

.footer-phone {
  margin: 5px 0 0 !important;
  color: var(--gold-2) !important;
  font-weight: 850 !important;
  letter-spacing: .04em !important;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #d6d6d6;
  font-size: 14px;
}

.footer-whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.02);
}

.footer-whatsapp img {
  width: 24px;
  height: 24px;
}

.footer-whatsapp span {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.footer-whatsapp strong {
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
}

/* Tablet */
@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

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

  .usp-grid article:nth-child(2)::after {
    display: none;
  }

  .usp-grid article:nth-child(1),
  .usp-grid article:nth-child(2) {
    border-bottom: 1px solid rgba(212,175,55,.14);
  }

  .contact-card {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .shell {
    width: min(100% - 24px, 1280px);
  }

  .site-header {
    min-height: 74px;
    padding: 10px 12px;
  }

  .brand img {
    width: min(285px, 55vw);
    max-height: 44px;
  }

  .header-actions {
    gap: 14px;
  }

  .whatsapp-icon {
    width: 38px;
    height: 38px;
  }

  .whatsapp-icon img {
    width: 31px;
    height: 31px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .menu-toggle span {
    width: 32px;
  }

  .mobile-menu {
    top: 82px;
    left: 12px;
    right: 12px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-bg {
    background-position: 69% 86%;
    background-size: auto 101%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.10) 24%, rgba(0,0,0,.10) 42%, rgba(0,0,0,.44) 62%, rgba(0,0,0,.92) 100%),
      linear-gradient(90deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.28) 56%, rgba(0,0,0,.04) 100%);
  }

  .hero-layout {
    display: block;
    min-height: 700px;
    padding-top: 80px;
    padding-bottom: 0;
  }

  .hero-content {
    max-width: 360px;
    padding-top: 0;
  }

  .kicker {
    margin-bottom: 9px;
    font-size: 11px;
  }

  .kicker::before {
    width: 26px;
    margin-right: 10px;
  }

  .hero h1 {
    max-width: 8.9ch;
    font-size: clamp(36px, 10.4vw, 55px);
    line-height: .90;
  }

  .lede {
    max-width: 315px;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.34;
  }

  .hero-actions {
    width: min(100%, 360px);
    gap: 9px;
    margin-top: 16px;
  }

  .cta {
    justify-content: flex-start;
    min-height: 50px;
    padding: 13px 16px;
    border-radius: 16px;
    font-size: 13px;
  }

  .cta img {
    width: 21px;
    height: 21px;
  }

  .usp {
    margin-top: -158px;
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 24px;
  }

  .usp-grid article {
    padding: 17px 10px;
  }

  .usp-grid img {
    width: 42px;
    height: 42px;
    margin-bottom: 9px;
  }

  .usp-grid h3 {
    font-size: 14px;
  }

  .usp-grid p {
    font-size: 10.5px;
    line-height: 1.32;
  }

  .vehicles {
    padding-top: 30px;
  }

  .section-head {
    display: block;
    margin-bottom: 20px;
  }

  .section-head h2,
  .why h2,
  .contact h2 {
    font-size: 31px;
  }

  .pill {
    display: inline-block;
    margin-top: 14px;
    padding: 12px 18px;
    font-size: 13px;
  }

  .vehicle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .vehicle-card {
    border-radius: 18px;
  }

  .vehicle-media {
    height: 144px;
  }

  .vehicle-media img {
    padding: 12px 8px 6px;
  }

  .vehicle-tag {
    top: 9px;
    left: 9px;
    padding: 6px 8px;
    border-radius: 9px;
    font-size: 8px;
    letter-spacing: .08em;
  }

  .vehicle-body {
    padding: 10px;
  }

  .vehicle-body h3 {
    min-height: 33px;
    font-size: 14px;
  }

  .vehicle-meta {
    gap: 4px;
    margin: 8px 0;
  }

  .vehicle-meta span {
    gap: 4px;
    padding: 5px 6px;
    font-size: 9px;
  }

  .vehicle-meta img {
    width: 11px;
    height: 11px;
  }

  .vehicle-footer {
    display: block;
  }

  .vehicle-footer strong {
    display: block;
    margin-bottom: 9px;
    font-size: 16px;
  }

  .vehicle-footer a {
    display: block;
    padding: 9px 7px;
    font-size: 8.8px;
    text-align: center;
  }

  .why {
    padding-top: 32px;
  }

  .section-text {
    font-size: 15px;
    line-height: 1.4;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-grid article {
    padding: 18px;
  }

  .why-grid img {
    width: 46px;
    height: 46px;
  }

  .why-grid h3 {
    font-size: 20px;
  }

  .why-grid p {
    font-size: 14px;
  }

  .contact {
    padding-bottom: 42px;
  }

  .contact-card {
    padding: 22px;
  }

  .contact-copy p:last-child {
    font-size: 16px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 24px;
    padding-bottom: 42px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
  }

  .footer-whatsapp {
    width: fit-content;
    padding: 10px 12px;
  }

  .footer-whatsapp img {
    width: 22px;
    height: 22px;
  }

  .footer-whatsapp span {
    font-size: 10px;
  }

  .footer-whatsapp strong {
    font-size: 13px;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: min(275px, 53vw);
    max-height: 42px;
  }

  .hero {
    min-height: 685px;
  }

  .hero-layout {
    min-height: 685px;
  }

  .hero-bg {
    background-position: 70% 87%;
    background-size: auto 99%;
  }

  .hero h1 {
    max-width: 8.8ch;
    font-size: clamp(36px, 10.2vw, 54px);
  }

  .usp {
    margin-top: -163px;
  }
}

@media (max-width: 390px) {
  .brand img {
    width: min(262px, 51vw);
    max-height: 40px;
  }

  .header-actions {
    gap: 11px;
  }

  .whatsapp-icon img {
    width: 27px;
    height: 27px;
  }

  .menu-toggle span {
    width: 30px;
  }

  .hero {
    min-height: 670px;
  }

  .hero-layout {
    min-height: 670px;
    padding-top: 78px;
  }

  .hero-content {
    max-width: 330px;
  }

  .hero h1 {
    max-width: 8.8ch;
    font-size: clamp(34px, 10vw, 52px);
  }

  .lede {
    max-width: 294px;
  }

  .hero-bg {
    background-position: 71% 88%;
    background-size: auto 97%;
  }

  .usp {
    margin-top: -166px;
  }
}

@media (max-width: 360px) {
  .vehicle-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-media {
    height: 205px;
  }

  .vehicle-body h3 {
    min-height: 0;
    font-size: 23px;
  }

  .vehicle-footer strong {
    font-size: 30px;
  }

  .vehicle-footer a {
    padding: 13px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}



/* ===== JOME CAR V19 HERO LOCK + VISUAL QA ===== */

/* Global image sanity after width/height attrs were added */
img {
  height: auto;
}

/* Footer logo safety, prevents oversized/distorted brand mark */
.footer-brand img {
  width: min(220px, 58vw) !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Header final balance */
.site-header {
  min-height: 74px;
  padding: 10px 18px;
}

.brand img {
  width: min(310px, 52vw);
  max-height: 46px;
  height: auto !important;
}

.header-actions {
  gap: 18px;
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
}

.whatsapp-icon img {
  width: 31px;
  height: 31px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  gap: 6px;
}

.menu-toggle span {
  width: 35px;
  height: 3px;
}

/* Desktop hero: less zoomed-feeling, better claim composition, clearer car */
@media (min-width: 769px) {
  .hero {
    min-height: clamp(760px, 92vh, 900px);
  }

  .hero-bg {
    background-position: center 58%;
    background-size: cover;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0,0,0,.74) 0%, rgba(0,0,0,.46) 36%, rgba(0,0,0,.12) 66%, rgba(0,0,0,.04) 100%),
      linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.10) 34%, rgba(0,0,0,.36) 68%, rgba(0,0,0,.88) 100%);
  }

  .hero-layout {
    min-height: clamp(760px, 92vh, 900px);
    padding-top: 112px;
    padding-bottom: 96px;
  }

  .hero-content {
    max-width: 650px;
    padding-top: 34px;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(60px, 5.05vw, 86px);
    line-height: .90;
  }

  .hero h1 span {
    white-space: nowrap;
  }

  .lede {
    max-width: 450px;
    margin-top: 22px;
    font-size: clamp(20px, 1.62vw, 25px);
  }

  .hero-actions {
    width: min(480px, 100%);
    margin-top: 30px;
  }

  .usp {
    margin-top: -58px;
  }
}

/* Mobile hero: exact 3-line claim and better car visibility */
@media (max-width: 768px) {
  .site-header {
    min-height: 72px;
    padding: 10px 12px;
  }

  .brand img {
    width: min(292px, 56vw);
    max-height: 44px;
  }

  .header-actions {
    gap: 13px;
  }

  .whatsapp-icon {
    width: 38px;
    height: 38px;
  }

  .whatsapp-icon img {
    width: 30px;
    height: 30px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .menu-toggle span {
    width: 32px;
  }

  .hero {
    min-height: 735px;
  }

  .hero-bg {
    background-position: 71% 83%;
    background-size: auto 106%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,.10) 24%, rgba(0,0,0,.12) 42%, rgba(0,0,0,.48) 63%, rgba(0,0,0,.92) 100%),
      linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.28) 58%, rgba(0,0,0,.04) 100%);
  }

  .hero-layout {
    min-height: 735px;
    padding-top: 80px;
    padding-bottom: 0;
  }

  .hero-content {
    max-width: 395px;
  }

  .kicker {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 9.3vw, 52px);
    line-height: .88;
  }

  .hero h1 span {
    white-space: nowrap;
  }

  .gold-line {
    display: block;
  }

  .lede {
    max-width: 330px;
    margin-top: 13px;
    font-size: 14.5px;
    line-height: 1.34;
  }

  .hero-actions {
    width: min(100%, 380px);
    margin-top: 17px;
    gap: 10px;
  }

  .cta {
    min-height: 50px;
    padding: 13px 16px;
    border-radius: 16px;
    font-size: 13px;
  }

  .cta img {
    width: 22px;
    height: 22px;
  }

  .usp {
    margin-top: -142px;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: min(282px, 55vw);
  }

  .hero {
    min-height: 715px;
  }

  .hero-layout {
    min-height: 715px;
  }

  .hero-bg {
    background-position: 72% 84%;
    background-size: auto 103%;
  }

  .hero h1 {
    font-size: clamp(35px, 9.1vw, 50px);
  }

  .usp {
    margin-top: -150px;
  }
}

@media (max-width: 390px) {
  .brand img {
    width: min(265px, 53vw);
  }

  .header-actions {
    gap: 10px;
  }

  .whatsapp-icon img {
    width: 28px;
    height: 28px;
  }

  .menu-toggle span {
    width: 30px;
  }

  .hero {
    min-height: 695px;
  }

  .hero-layout {
    min-height: 695px;
    padding-top: 78px;
  }

  .hero-bg {
    background-position: 73% 85%;
    background-size: auto 100%;
  }

  .hero h1 {
    font-size: clamp(33px, 8.9vw, 48px);
  }

  .lede {
    max-width: 305px;
  }

  .usp {
    margin-top: -156px;
  }
}

/* Desktop lower sections breathing */
@media (min-width: 769px) {
  .vehicles,
  .why,
  .contact {
    padding-top: 52px;
  }

  .vehicle-media {
    height: 300px;
  }

  .contact-card {
    margin-top: 8px;
  }

  .site-footer {
    padding-top: 26px;
  }
}



/* ===== JOME CAR V20 PRODUCTION SELLABLE LOCK ===== */
img {
  height: auto;
}

.site-header {
  background: linear-gradient(180deg, rgba(0,0,0,.96), rgba(0,0,0,.62));
}

.whatsapp-icon img {
  transform: scale(1.18);
}

.hero-actions .cta.primary img,
.contact-actions .cta.primary img {
  opacity: .86;
  filter: brightness(.18) contrast(1.55);
}

.hero-actions .cta.secondary img,
.footer-whatsapp img,
.contact-actions .cta.secondary img {
  filter: drop-shadow(0 0 7px rgba(212,175,55,.24));
}

.hero {
  background: #050505;
}

.hero-content {
  text-shadow: 0 2px 22px rgba(0,0,0,.52);
}

.vehicle-note {
  margin: 18px 0 0;
  max-width: 760px;
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.45;
}

.vehicle-card {
  box-shadow: 0 22px 64px rgba(0,0,0,.42);
}

.vehicle-media::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 8%;
  height: 22%;
  background: radial-gradient(ellipse at center, rgba(212,175,55,.12), transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}

.vehicle-media img {
  position: relative;
  z-index: 1;
}

.vehicle-tag {
  z-index: 2;
}

.footer-brand img {
  width: min(220px, 58vw);
  height: auto;
  object-fit: contain;
}

@media (min-width: 769px) {
  .site-header {
    min-height: 72px;
  }

  .brand img {
    width: min(300px, 34vw);
  }

  .hero {
    min-height: clamp(740px, 90vh, 860px);
  }

  .hero-layout {
    min-height: clamp(740px, 90vh, 860px);
    padding-top: 104px;
    padding-bottom: 84px;
  }

  .hero-bg {
    background-position: 56% 60%;
    background-size: cover;
  }

  .hero-content {
    max-width: 700px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(58px, 5vw, 82px);
  }

  .lede {
    max-width: 455px;
  }

  .hero-actions {
    width: min(500px, 100%);
  }

  .usp {
    margin-top: -50px;
  }

  .vehicle-grid {
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .site-header {
    min-height: 70px;
  }

  .brand img {
    width: min(292px, 56vw);
    max-height: 43px;
  }

  .whatsapp-icon img {
    width: 32px;
    height: 32px;
  }

  .menu-toggle span {
    height: 3.2px;
  }

  .hero {
    min-height: 715px;
  }

  .hero-layout {
    min-height: 715px;
    padding-top: 78px;
  }

  .hero-bg {
    background-position: 70% 84%;
    background-size: auto 104%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,.26) 0%, rgba(0,0,0,.08) 24%, rgba(0,0,0,.10) 42%, rgba(0,0,0,.44) 63%, rgba(0,0,0,.92) 100%),
      linear-gradient(90deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.26) 58%, rgba(0,0,0,.04) 100%);
  }

  .hero-content {
    max-width: 395px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 9.35vw, 52px);
    line-height: .89;
  }

  .hero h1 span {
    white-space: nowrap;
  }

  .lede {
    max-width: 330px;
    font-size: 14.5px;
  }

  .hero-actions {
    width: min(100%, 388px);
  }

  .usp {
    margin-top: -144px;
  }

  .usp-grid {
    box-shadow: 0 26px 72px rgba(0,0,0,.62);
  }

  .usp-grid img {
    width: 46px;
    height: 46px;
  }

  .vehicle-grid {
    gap: 11px;
  }

  .vehicle-media {
    height: 152px;
  }

  .vehicle-media img {
    padding: 11px 7px 6px;
  }

  .vehicle-body {
    padding: 11px;
  }

  .vehicle-body h3 {
    font-size: 14.4px;
    min-height: 34px;
  }

  .vehicle-meta {
    gap: 5px;
  }

  .vehicle-meta span {
    font-size: 9.4px;
  }

  .vehicle-footer strong {
    font-size: 16.5px;
  }

  .vehicle-footer a {
    font-size: 9px;
  }

  .vehicle-note {
    margin-top: 14px;
    font-size: 12px;
  }

  .why-grid article {
    min-height: 132px;
  }

  .contact-card {
    box-shadow: 0 30px 90px rgba(0,0,0,.52);
  }

  .footer-brand img {
    width: min(220px, 58vw);
    max-height: none;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 700px;
  }

  .hero-layout {
    min-height: 700px;
  }

  .hero-bg {
    background-position: 71% 85%;
    background-size: auto 101%;
  }

  .usp {
    margin-top: -150px;
  }

  .vehicle-media {
    height: 148px;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 680px;
  }

  .hero-layout {
    min-height: 680px;
  }

  .hero-bg {
    background-position: 72% 86%;
    background-size: auto 99%;
  }

  .hero h1 {
    font-size: clamp(34px, 9vw, 49px);
  }

  .usp {
    margin-top: -154px;
  }

  .vehicle-media {
    height: 142px;
  }
}



/* ===== JOME CAR V21 HERO MOCKUP LOCK ===== */
img { height: auto; }

.site-header {
  min-height: 76px !important;
  padding: 10px 18px !important;
  background: linear-gradient(180deg, rgba(0,0,0,.98), rgba(0,0,0,.78)) !important;
  border-bottom: 1px solid rgba(212,175,55,.10) !important;
}

.brand img {
  width: min(320px, 52vw) !important;
  max-height: 48px !important;
  object-fit: contain !important;
}

.header-actions { gap: 18px !important; }

.whatsapp-icon {
  width: 42px !important;
  height: 42px !important;
}

.whatsapp-icon img {
  width: 33px !important;
  height: 33px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 0 9px rgba(212,175,55,.35)) !important;
}

.menu-toggle {
  width: 45px !important;
  height: 45px !important;
  gap: 6px !important;
}

.menu-toggle span {
  width: 36px !important;
  height: 3.3px !important;
  background: #fff !important;
}

/* Desktop mockup hero */
@media (min-width: 769px) {
  .hero { min-height: clamp(760px, 92vh, 900px) !important; }

  .hero-bg {
    background-image: url("assets/optimized/hero-clean.webp") !important;
    background-size: cover !important;
    background-position: 58% 57% !important;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0,0,0,.73) 0%, rgba(0,0,0,.50) 33%, rgba(0,0,0,.18) 60%, rgba(0,0,0,.04) 100%),
      linear-gradient(180deg, rgba(0,0,0,.24) 0%, rgba(0,0,0,.08) 36%, rgba(0,0,0,.38) 70%, rgba(0,0,0,.88) 100%) !important;
  }

  .hero-layout {
    min-height: clamp(760px, 92vh, 900px) !important;
    padding-top: 116px !important;
    padding-bottom: 88px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 680px) 1fr !important;
  }

  .hero-content {
    max-width: 680px !important;
    padding-top: 32px !important;
  }

  .hero .kicker { margin-bottom: 18px !important; }

  .hero h1 {
    max-width: 720px !important;
    font-size: clamp(62px, 5.2vw, 90px) !important;
    line-height: .88 !important;
    letter-spacing: -.052em !important;
  }

  .hero h1 span {
    display: block !important;
    white-space: nowrap !important;
  }

  .hero h1 .gold-line {
    display: block !important;
    width: fit-content !important;
    color: transparent !important;
    background: linear-gradient(180deg, var(--gold-2), var(--gold)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
  }

  .lede {
    max-width: 470px !important;
    margin-top: 22px !important;
    font-size: clamp(21px, 1.65vw, 26px) !important;
    line-height: 1.35 !important;
  }

  .hero-actions {
    width: min(500px, 100%) !important;
    margin-top: 30px !important;
    gap: 14px !important;
  }

  .hero-actions .cta {
    min-height: 60px !important;
    border-radius: 22px !important;
    font-size: 17px !important;
  }

  .usp { margin-top: -54px !important; }
}

/* Mobile mockup hero */
@media (max-width: 768px) {
  .site-header {
    min-height: 72px !important;
    padding: 9px 10px !important;
  }

  .brand img {
    width: min(300px, 58vw) !important;
    max-height: 45px !important;
  }

  .header-actions { gap: 12px !important; }

  .whatsapp-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .whatsapp-icon img {
    width: 32px !important;
    height: 32px !important;
  }

  .menu-toggle {
    width: 42px !important;
    height: 42px !important;
    gap: 6px !important;
  }

  .menu-toggle span {
    width: 33px !important;
    height: 3.2px !important;
  }

  .hero { min-height: 708px !important; }

  .hero-bg {
    background-image: url("assets/optimized/hero-clean.webp") !important;
    background-size: auto 104% !important;
    background-position: 70% 84% !important;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,.24) 0%, rgba(0,0,0,.08) 23%, rgba(0,0,0,.10) 42%, rgba(0,0,0,.43) 62%, rgba(0,0,0,.92) 100%),
      linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.28) 58%, rgba(0,0,0,.04) 100%) !important;
  }

  .hero-layout {
    min-height: 708px !important;
    padding-top: 78px !important;
    padding-bottom: 0 !important;
  }

  .hero-content {
    max-width: 400px !important;
    padding-top: 0 !important;
  }

  .hero .kicker {
    margin-bottom: 10px !important;
    font-size: 11px !important;
    letter-spacing: .15em !important;
  }

  .hero .kicker::before {
    width: 28px !important;
    margin-right: 10px !important;
  }

  .hero h1 {
    max-width: 100% !important;
    font-size: clamp(35px, 9vw, 51px) !important;
    line-height: .88 !important;
    letter-spacing: -.05em !important;
  }

  .hero h1 span {
    display: block !important;
    white-space: nowrap !important;
  }

  .hero h1 .gold-line {
    display: block !important;
    width: fit-content !important;
    color: transparent !important;
    background: linear-gradient(180deg, var(--gold-2), var(--gold)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
  }

  .lede {
    max-width: 330px !important;
    margin-top: 12px !important;
    font-size: 14.2px !important;
    line-height: 1.32 !important;
  }

  .hero-actions {
    width: min(100%, 390px) !important;
    margin-top: 16px !important;
    gap: 10px !important;
  }

  .hero-actions .cta {
    min-height: 51px !important;
    padding: 13px 16px !important;
    border-radius: 16px !important;
    font-size: 13px !important;
  }

  .hero-actions .cta img {
    width: 22px !important;
    height: 22px !important;
  }

  .usp { margin-top: -148px !important; }

  .usp-grid { border-radius: 24px !important; }

  .usp-grid article { padding: 17px 10px !important; }

  .usp-grid img {
    width: 44px !important;
    height: 44px !important;
  }
}

@media (max-width: 430px) {
  .brand img { width: min(290px, 56vw) !important; }

  .hero { min-height: 694px !important; }

  .hero-layout { min-height: 694px !important; }

  .hero-bg {
    background-size: auto 101% !important;
    background-position: 71% 85% !important;
  }

  .hero h1 { font-size: clamp(34px, 8.9vw, 49px) !important; }

  .usp { margin-top: -154px !important; }
}

@media (max-width: 390px) {
  .brand img { width: min(270px, 53vw) !important; }

  .header-actions { gap: 10px !important; }

  .whatsapp-icon img {
    width: 29px !important;
    height: 29px !important;
  }

  .menu-toggle span { width: 30px !important; }

  .hero { min-height: 674px !important; }

  .hero-layout {
    min-height: 674px !important;
    padding-top: 76px !important;
  }

  .hero-bg {
    background-size: auto 98% !important;
    background-position: 72% 86% !important;
  }

  .hero h1 { font-size: clamp(32px, 8.7vw, 47px) !important; }

  .lede { max-width: 302px !important; }

  .usp { margin-top: -158px !important; }
}

.vehicle-note { color: #c9c9c9 !important; }

.footer-brand img {
  width: min(220px, 58vw) !important;
  height: auto !important;
  object-fit: contain !important;
}
