:root {
  --bg: #0a0a0a;
  --bg-soft: #151515;
  --card: #1c1c1c;
  --gold: #c79a4b;
  --gold-light: #e3b15a;
  --silver: #d6d6d6;
  --text: #f2f2f2;
  --muted: #bfbfbf;
  --line: rgba(227, 177, 90, 0.2);
  --radius: 14px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  --speed: 240ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: radial-gradient(circle at 90% -20%, rgba(199, 154, 75, 0.14), transparent 40%),
    radial-gradient(circle at 0% 20%, rgba(214, 214, 214, 0.07), transparent 32%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.section {
  padding: 2rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header.scrolled {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.site-logo-image {
  display: block;
  width: min(130px, 22vw);
  height: auto;
}

.mobile-logo-text {
  display: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.footer-logo-image {
  width: min(220px, 48vw);
  margin-bottom: 0.75rem;
}

.logo-main {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--silver);
}

.logo-sub {
  letter-spacing: 0.6em;
  font-size: 0.7rem;
  color: var(--gold);
}

.site-header .logo {
  flex-shrink: 0;
  padding: 0.35rem 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--text);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 8px;
  padding: 0.5rem 0.65rem;
  cursor: pointer;
}

.btn {
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--speed), box-shadow var(--speed), background var(--speed);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #101010;
  box-shadow: 0 10px 22px rgba(199, 154, 75, 0.25);
}

.btn-gold:hover {
  box-shadow: 0 12px 28px rgba(227, 177, 90, 0.35);
}

.btn-outline {
  border-color: var(--line);
  color: var(--silver);
  background: rgba(255, 255, 255, 0.01);
}

.btn-outline:hover {
  border-color: var(--gold-light);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 140;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 14px 32px rgba(18, 140, 126, 0.38);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.whatsapp-float i {
  font-size: 1.45rem;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(18, 140, 126, 0.46);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 6.2rem 0 5rem;
  background-image: url("../images/hero-bg.png");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #0a0a0a;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.03) 0%, rgba(10, 10, 10, 0.75) 100%);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.hero-copy {
  padding-bottom: 0.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-copy .eyebrow {
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 4.8vw, 3.8rem);
  margin: 0 0 0.85rem;
  line-height: 0.96;
}

.hero-copy h1 span {
  color: var(--gold);
}

.hero-copy p {
  color: var(--muted);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.search-panel {
  margin-top: -1.2rem;
  position: sticky;
  top: 86px;
  z-index: 90;
  background: rgba(21, 21, 21, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.7rem;
}

.search-toggle-btn {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(199, 154, 75, 0.12);
  color: var(--gold-light);
  padding: 0.7rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font: inherit;
  font-size: 0.84rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  display: none;
}

.search-toggle-btn:hover {
  background: rgba(199, 154, 75, 0.2);
}

.search-panel.is-compact .search-toggle-btn {
  display: flex;
}

.search-panel.is-compact .search-grid {
  display: none;
}

.search-panel.is-compact.is-open .search-grid {
  display: grid;
  margin-top: 0.7rem;
}

.search-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(5, 1fr) auto;
  gap: 0.85rem;
  align-items: end;
  padding: 0.3rem;
}

.search-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.search-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  font-size: 0.78rem;
  color: var(--muted);
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #111;
  color: var(--silver);
  padding: 0.62rem 0.7rem;
  font: inherit;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.section-head a {
  color: var(--gold-light);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.vehicle-card {
  background: linear-gradient(180deg, #1f1f1f, #161616);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--speed), border-color var(--speed), box-shadow var(--speed);
}

.vehicle-card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.vehicle-image {
  position: relative;
}

.vehicle-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.5);
  color: var(--gold-light);
}

.vehicle-content {
  padding: 0.9rem;
}

.vehicle-content h3 {
  margin: 0;
  font-size: 1rem;
}

.meta {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.price-row {
  margin-top: 0.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-tag {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1.1rem;
}

.perks {
  padding-top: 1rem;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.perk {
  background: var(--bg-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.15rem;
}

.perk i {
  color: var(--gold);
  font-size: 1.3rem;
}

.perk h3 {
  margin: 0.8rem 0 0.35rem;
  font-size: 1rem;
}

.perk p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-slider {
  background: linear-gradient(130deg, #171717, #111);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.4rem;
  min-height: 220px;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  color: var(--silver);
  max-width: 760px;
}

.testimonial h4 {
  color: var(--gold-light);
  margin-bottom: 0;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #4b4b4b;
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--gold-light);
}

.site-footer {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0b0b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.2rem;
  padding: 2rem 0 1.2rem;
}

.footer-grid h4 {
  margin: 0.4rem 0;
  color: var(--gold-light);
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.copyright {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  color: #9a9a9a;
  padding: 0.9rem 0 1.1rem;
  font-size: 0.84rem;
}

.breadcrumb {
  margin-top: 1.6rem;
  color: var(--muted);
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.9rem;
}

.details-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.2rem;
  margin-top: 1rem;
}

.gallery-panel,
.info-panel,
.tab-panel,
.dealer-card {
  background: linear-gradient(180deg, #1a1a1a, #141414);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.gallery-panel,
.info-panel {
  padding: 1rem;
}

.main-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.main-image-wrap img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 300ms ease;
}

.main-image-wrap:hover img {
  transform: scale(1.04);
}

.thumb-row {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.thumb {
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  opacity: 0.7;
  cursor: pointer;
}

.thumb.active {
  border-color: var(--gold);
  opacity: 1;
}

.thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.info-panel h1 {
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.info-panel .price {
  margin: 0.4rem 0 1rem;
  color: var(--gold-light);
  font-size: 1.7rem;
  font-weight: 700;
}

.actions-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.spec-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  margin: 1rem 0;
}

.spec-chips li {
  background: rgba(227, 177, 90, 0.09);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  padding: 0.32rem 0.62rem;
}

.dealer-card {
  margin-top: 0.8rem;
  padding: 0.9rem;
}

.dealer-card h3 {
  margin-top: 0;
  font-family: "Cormorant Garamond", serif;
}

.tabs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.tab {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #121212;
  color: var(--silver);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
}

.tab.active {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.tab-panel {
  display: none;
  padding: 1rem;
}

.tab-panel.active {
  display: block;
}

.spec-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
  padding-bottom: 0.45rem;
}

.spec-row span:first-child {
  color: var(--muted);
}

.features-list {
  margin: 0;
  padding-left: 1.1rem;
}

.features-list li {
  margin-bottom: 0.4rem;
}

.finance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.finance-result {
  margin-top: 0.8rem;
  font-size: 1.1rem;
  color: var(--gold-light);
  font-weight: 600;
}

.about-page {
  padding-bottom: 2rem;
}

.contact-page {
  padding-bottom: 2rem;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 8.5rem 0 4.5rem;
  background:
    radial-gradient(circle at 18% 12%, rgba(227, 177, 90, 0.18), transparent 22%),
    radial-gradient(circle at 90% 18%, rgba(255, 255, 255, 0.05), transparent 20%),
    #0a0a0a;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.4) 100%),
    url("../images/hero-bg.png") center top / contain no-repeat;
  opacity: 0.45;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.contact-hero h1,
.contact-card h2,
.contact-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
}

.contact-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.contact-lead {
  max-width: 620px;
  margin-top: 1rem;
  color: var(--silver);
}

.contact-grid-wrap {
  padding-top: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 1rem;
}

.contact-card,
.contact-panel {
  background: linear-gradient(180deg, rgba(31, 31, 31, 0.96), rgba(18, 18, 18, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card {
  padding: 1.5rem;
}

.contact-card p,
.contact-panel p {
  color: var(--muted);
}

.contact-method-list,
.contact-detail-stack {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.contact-method,
.contact-detail-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.contact-method:hover {
  border-color: var(--line);
  transform: translateY(-2px);
}

.contact-method i,
.contact-detail-item i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(199, 154, 75, 0.14);
  color: var(--gold-light);
  font-size: 1rem;
}

.contact-method strong,
.contact-detail-item strong {
  display: block;
  margin-bottom: 0.2rem;
}

.contact-method span,
.contact-detail-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-actions {
  justify-content: flex-start;
  margin-top: 1.3rem;
}

.contact-panel {
  padding: 1.5rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: var(--silver);
  font-size: 0.88rem;
}

.contact-form-grid textarea {
  resize: vertical;
}

.contact-form-full {
  grid-column: 1 / -1;
}

.contact-form-note {
  margin-top: -0.2rem;
}

.developer-credit {
  margin-top: -0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.developer-credit a {
  color: var(--gold-light);
}

.developer-credit a:hover {
  color: var(--text);
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 8.5rem 0 4.5rem;
  background:
    radial-gradient(circle at 82% 18%, rgba(199, 154, 75, 0.24), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    #0a0a0a;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.32) 100%),
    url("../images/hero-bg.png") center top / contain no-repeat;
  opacity: 0.5;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.page-kicker {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
}

.about-hero h1,
.about-story-grid h2,
.about-cta h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
}

.about-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.97;
}

.about-lead {
  max-width: 680px;
  margin-top: 1rem;
  color: var(--silver);
  font-size: 1rem;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.about-panel,
.about-stat,
.about-cta {
  background: linear-gradient(180deg, rgba(31, 31, 31, 0.96), rgba(18, 18, 18, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-panel {
  padding: 1.5rem;
}

.about-panel h2 {
  font-size: 2.1rem;
  margin-bottom: 0.9rem;
}

.about-panel h3 {
  margin-top: 0;
  margin-bottom: 0.85rem;
  font-size: 1.1rem;
}

.about-panel p {
  color: var(--muted);
}

.about-panel i {
  color: var(--gold-light);
  font-size: 1.3rem;
}

.about-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.7rem 0;
  color: var(--silver);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-checklist li:last-child {
  border-bottom: none;
}

.about-checklist i {
  margin-top: 0.2rem;
  font-size: 0.85rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-stat {
  padding: 1.3rem 1.1rem;
}

.about-stat strong {
  display: block;
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin-bottom: 0.35rem;
}

.about-stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-cta {
  padding: 2rem;
  text-align: center;
}

.about-cta h2 {
  font-size: 2.3rem;
  margin-bottom: 0.65rem;
}

.about-cta p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
}

.about-actions {
  justify-content: center;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy.reveal {
  opacity: 0;
  transform: translateY(-90px);
}

.hero-copy.reveal .hero-actions {
  opacity: 0;
  transform: translateY(-40px);
}

.hero-copy.reveal.in-view {
  animation: heroDropIn 850ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-copy.reveal.in-view .hero-actions {
  animation: heroDropIn 700ms cubic-bezier(0.2, 0.8, 0.2, 1) 140ms forwards;
}

@keyframes heroDropIn {
  0% {
    opacity: 0;
    transform: translateY(-90px);
  }
  65% {
    opacity: 1;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
