/* ── Reset & Base ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  color: #334155;
  background: #fafafa;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
strong { font-weight: 500; }

/* ── Custom Properties ───────────────────────────── */
:root {
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-light: #ccfbf1;
  --slate: #334155;
  --slate-light: #94a3b8;
  --slate-lighter: #f1f5f9;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Typography ──────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--slate);
}

/* ── Layout ──────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Navigation ──────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(51, 65, 85, 0.08);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,0.06); }
.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 500; font-size: 15px; letter-spacing: -0.01em;
  color: var(--slate);
}
.nav__logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600;
}
.nav__logo-text { font-weight: 400; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__link {
  font-size: 14px; font-weight: 400; letter-spacing: 0.01em;
  color: var(--slate-light); transition: color var(--transition);
}
.nav__link:hover { color: var(--teal); }
.nav__link--cta {
  background: var(--teal); color: var(--white) !important;
  padding: 9px 20px; border-radius: 8px; font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}
.nav__link--cta:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* Mobile Toggle */
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle-line {
  width: 22px; height: 1.5px; background: var(--slate);
  border-radius: 2px; transition: var(--transition);
}
.nav__toggle.active .nav__toggle-line:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav__toggle.active .nav__toggle-line:nth-child(2) { opacity: 0; }
.nav__toggle.active .nav__toggle-line:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(250, 250, 250, 0.98);
  backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu__inner { text-align: center; }
.mobile-menu__link {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 500; color: var(--slate);
  padding: 16px 0; transition: color var(--transition);
}
.mobile-menu__link:hover { color: var(--teal); }
.mobile-menu__link--cta {
  display: inline-block; margin-top: 16px;
  font-family: 'Inter', sans-serif; font-size: 15px;
  background: var(--teal); color: var(--white);
  padding: 12px 28px; border-radius: 8px; font-weight: 500;
}
.mobile-menu__contact { margin-top: 40px; }
.mobile-menu__phone {
  display: block; font-size: 20px; font-weight: 500;
  color: var(--teal); margin-bottom: 8px;
}
.mobile-menu__addr { font-size: 14px; color: var(--slate-light); line-height: 1.6; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  transition: all var(--transition);
}
.btn--primary {
  background: var(--teal); color: var(--white);
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.25);
}
.btn--primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(13, 148, 136, 0.35); }
.btn--ghost {
  background: transparent; color: var(--slate);
  border: 1px solid rgba(51, 65, 85, 0.2);
}
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn--white { background: var(--white); color: var(--teal); font-weight: 600; }
.btn--white:hover { background: var(--slate-lighter); transform: translateY(-2px); }
.btn--outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn--full { width: 100%; justify-content: center; }

/* ── Hero ────────────────────────────────────────── */
.hero {
  padding-top: 72px; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--white);
}
.hero__grid {
  max-width: 1200px; margin: 0 auto; padding: 60px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero__eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 20px;
}
.hero__headline {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500; color: var(--slate);
  margin-bottom: 24px; line-height: 1.1;
}
.hero__sub {
  font-size: 17px; color: var(--slate-light); line-height: 1.8;
  margin-bottom: 36px; max-width: 480px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero__trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--slate-light); font-weight: 400;
}
.hero__trust-item svg { color: var(--teal); flex-shrink: 0; }
.hero__image { position: relative; }
.hero__image-wrapper {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}
.hero__image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero__image-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--teal-light); z-index: -1;
}

/* ── Divider ─────────────────────────────────────── */
.divider {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.divider__line {
  display: block; width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(51,65,85,0.12), transparent);
}

/* ── Section Shared ──────────────────────────────── */
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px; color: var(--slate);
}
.section-desc {
  font-size: 17px; color: var(--slate-light); max-width: 600px;
  margin: 0 auto; line-height: 1.8;
}

/* ── Inventory ───────────────────────────────────── */
.inventory { padding: 100px 0; background: var(--white); }
.inventory__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-bottom: 32px;
}
.vehicle-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(51,65,85,0.08);
  background: var(--white);
  transition: all var(--transition);
  display: block;
}
.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: transparent;
}
.vehicle-card__img { overflow: hidden; }
.vehicle-card__img img {
  width: 100%; height: 260px; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.vehicle-card:hover .vehicle-card__img img { transform: scale(1.05); }
.vehicle-card__body { padding: 24px; }
.vehicle-card__tag {
  display: inline-block; font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-light);
  padding: 4px 10px; border-radius: 4px; margin-bottom: 12px;
}
.vehicle-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 500; color: var(--slate);
  margin-bottom: 8px;
}
.vehicle-card__desc { font-size: 14px; color: var(--slate-light); line-height: 1.6; margin-bottom: 16px; }
.vehicle-card__cta {
  font-size: 13px; font-weight: 500; color: var(--teal);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap var(--transition);
}
.vehicle-card:hover .vehicle-card__cta { gap: 8px; }
.vehicle-card__arrow { transition: transform var(--transition); }
.vehicle-card:hover .vehicle-card__arrow { transform: translateX(3px); }
.inventory__note { text-align: center; font-size: 14px; color: var(--slate-light); }

/* ── About ───────────────────────────────────────── */
.about { padding: 100px 0; background: var(--slate-lighter); }
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about__images { position: relative; }
.about__img-main {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.about__img-main img { width: 100%; height: 600px; object-fit: cover; }
.about__img-secondary {
  position: absolute; bottom: -30px; right: -30px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border: 4px solid var(--white);
}
.about__img-secondary img { width: 340px; height: 240px; object-fit: cover; }
.about__img-accent {
  position: absolute; top: -20px; left: -20px;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.about__content { padding: 20px 0; }
.about__text {
  font-size: 16px; color: var(--slate-light); line-height: 1.9;
  margin-bottom: 20px;
}
.about__values { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.about__value {
  display: flex; gap: 16px; align-items: flex-start;
}
.about__value-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.about__value strong { display: block; font-size: 15px; color: var(--slate); margin-bottom: 2px; }
.about__value span { font-size: 14px; color: var(--slate-light); line-height: 1.6; }

/* ── Services ────────────────────────────────────── */
.services { padding: 100px 0; background: var(--white); }
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  padding: 36px 28px; border-radius: var(--radius);
  border: 1px solid rgba(51,65,85,0.07);
  background: var(--white);
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 40px rgba(13, 148, 136, 0.08);
  transform: translateY(-4px);
}
.service-card__icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 500; color: var(--slate);
  margin-bottom: 10px;
}
.service-card__text { font-size: 14px; color: var(--slate-light); line-height: 1.8; }

/* ── CTA ─────────────────────────────────────────── */
.cta {
  padding: 100px 0;
  background: var(--slate);
  position: relative; overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(13, 148, 136, 0.12);
}
.cta__inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta__title {
  font-size: clamp(26px, 3.5vw, 40px); color: var(--white);
  margin-bottom: 12px;
}
.cta__text { font-size: 17px; color: var(--slate-light); line-height: 1.7; max-width: 480px; }
.cta__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Contact ─────────────────────────────────────── */
.contact { padding: 100px 0; background: var(--slate-lighter); }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.contact__desc { font-size: 16px; color: var(--slate-light); line-height: 1.8; margin-bottom: 36px; }
.contact__details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact__detail { display: flex; gap: 16px; align-items: flex-start; }
.contact__detail-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.contact__detail strong { display: block; font-size: 13px; font-weight: 500; color: var(--slate); margin-bottom: 2px; letter-spacing: 0.04em; text-transform: uppercase; }
.contact__detail span, .contact__detail a { font-size: 15px; color: var(--slate-light); line-height: 1.6; }
.contact__detail a:hover { color: var(--teal); }
.contact__map { border-radius: var(--radius); overflow: hidden; }

/* Form */
.contact__form-wrap {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.contact__form-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 500; color: var(--slate);
  margin-bottom: 28px;
}
.form__group { margin-bottom: 20px; }
.form__label {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--slate); margin-bottom: 6px; letter-spacing: 0.02em;
}
.form__input {
  width: 100%; padding: 12px 16px;
  border: 1px solid rgba(51,65,85,0.15); border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 300;
  color: var(--slate); background: var(--slate-lighter);
  transition: all var(--transition); outline: none;
}
.form__input:focus { border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 3px rgba(13,148,136,0.1); }
.form__input::placeholder { color: var(--slate-light); }
.form__select { appearance: none; cursor: pointer; }
.form__textarea { resize: vertical; min-height: 100px; }
.form__success {
  display: none; align-items: center; gap: 10px;
  margin-top: 16px; padding: 14px 18px; border-radius: var(--radius-sm);
  background: var(--teal-light); color: var(--teal-dark);
  font-size: 14px; font-weight: 500;
}
.form__success.show { display: flex; }

/* ── Footer ──────────────────────────────────────── */
.footer { padding: 60px 0 0; background: var(--slate); color: var(--slate-light); }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 48px;
}
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600;
}
.footer__logo-text { font-weight: 500; color: var(--white); font-size: 15px; }
.footer__tagline { font-size: 14px; line-height: 1.8; color: var(--slate-light); max-width: 300px; }
.footer__links, .footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__links strong, .footer__contact strong {
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white); margin-bottom: 4px;
}
.footer__links a { font-size: 14px; color: var(--slate-light); transition: color var(--transition); }
.footer__links a:hover { color: var(--teal); }
.footer__contact a { font-size: 14px; color: var(--slate-light); transition: color var(--transition); }
.footer__contact a:hover { color: var(--teal); }
.footer__contact span { font-size: 14px; line-height: 1.7; }
.footer__bottom {
  border-top: 1px solid rgba(148,163,184,0.15);
  padding: 24px 0; text-align: center;
}
.footer__bottom p { font-size: 13px; color: var(--slate-light); }

/* ── Scroll Animations ───────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__grid { gap: 40px; }
  .hero__image-wrapper img { height: 560px; }
  .about__img-main img { height: 460px; }
  .about__img-secondary { right: -16px; bottom: -20px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .hero__grid { grid-template-columns: 1fr; padding: 40px 24px; }
  .hero__image { order: -1; }
  .hero__image-wrapper img { height: 400px; }
  .hero__image-accent { display: none; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .inventory__grid { grid-template-columns: 1fr; max-width: 480px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__images { max-width: 480px; }
  .about__img-main img { height: 400px; }
  .about__img-secondary { display: none; }
  .about__img-accent { top: -12px; left: -12px; width: 56px; height: 56px; }
  .services__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .cta__inner { flex-direction: column; text-align: center; }
  .cta__actions { justify-content: center; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 28px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 32px; }
  .hero__trust { flex-direction: column; gap: 12px; }
  .section-title { font-size: 28px; }
}
