:root {
  --bg-main: #050505;
  --bg-elevated: #111111;
  --bg-soft: #181818;
  --primary: #ffd60a;
  --accent-red: #ef4444;
  --accent-orange: #fb923c;
  --text-main: #f9f9f9;
  --text-muted: #a3a3a3;
  --border-subtle: #262626;
}

/* RESET */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top left, #202020 0, #050505 50%, #000000 100%);
  line-height: 1.6;
}

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

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

/* GLOBAL */

main {
  width: 100%;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(15, 15, 15, 0.96);
  color: var(--text-main);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* BRAND / LOGO */

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

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: auto;
  overflow: visible;
  background: transparent;
  border-radius: 0;
}

.brand-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.logo span {
  color: var(--primary);
}

.tagline-inline {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 260px;
}

/* NAV */

nav ul {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  font-size: 0.9rem;
}

nav li a {
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

nav li a:hover {
  border-color: var(--primary);
}

/* BUTTONS */

.btn {
  display: inline-block;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition:
    transform 0.1s ease,
    box-shadow 0.1s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: radial-gradient(circle at top left, var(--primary), var(--accent-orange));
  color: #111111;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.65);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.8);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
}

.btn-outline:hover {
  background: #1a1a1a;
  border-color: var(--primary);
  color: var(--primary);
}

/* HERO */

#home {
  width: 100%;
  padding: 3rem 0 2rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: stretch;
  min-height: 520px;
  margin: 0 auto;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 540px;
  margin: 0 auto;
  padding: 0 1.5rem 0 2.5rem;
}

.hero-tag {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.hero h1 {
  font-size: 2.1rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero h1 span {
  color: var(--accent-red);
}

.hero .subheading {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: #d4d4d4;
  line-height: 1.55;
}

.hero-list {
  margin: 1.1rem 0 1.75rem;
}

.hero-list li {
  list-style: none;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: #f3f3f3;
}

.hero-list li::before {
  content: "✔";
  color: var(--primary);
  margin-right: 0.45rem;
  font-weight: 700;
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  width: 100%;
}

/* HERO RIGHT */

.hero-right {
  position: relative;
  height: 100%;
  border-radius: 16px 0 0 16px;
  border-top: 3px solid var(--primary);
  border-left: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
  overflow: hidden;
  box-shadow: -8px 8px 40px rgba(0, 0, 0, 0.6);
}

.hero-image-full {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  background-image: url("images/herobackground.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  padding: 2.25rem 2.5rem;
  background: radial-gradient(circle at top left, rgba(250, 204, 21, 0.18), rgba(0, 0, 0, 0.82));
  color: #f9f9f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-overlay h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.hero-overlay p {
  font-size: 0.88rem;
  color: #e5e5e5;
  line-height: 1.55;
}

.hero-points {
  list-style: none;
  margin: 1rem 0 1.35rem;
  font-size: 0.85rem;
}

.hero-points li {
  margin-bottom: 0.4rem;
  color: #f3f3f3;
}

.hero-points li::before {
  content: "•";
  color: var(--primary);
  margin-right: 0.45rem;
}

.hero-btn {
  align-self: flex-start;
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
}

/* SECTIONS */

section {
  width: 100%;
  border-bottom: 1px solid var(--border-subtle);
}

section:last-of-type {
  border-bottom: none;
}

/* INVENTORY */

#inventory {
  padding: 3rem 2.5rem;
}

#inventory .section-inner {
  max-width: 1200px;
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-hint {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* FILTERS */

.filters {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  align-items: center;
}

.filters select,
.filters input[type="text"],
.price-filter {
  width: 300px;
  box-sizing: border-box;
}

.filters select,
.filters input[type="text"] {
  padding: 0.45rem 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  background: #050505;
  color: var(--text-main);
}

.filters input::placeholder {
  color: #737373;
}

/* PRICE SLIDER */

.price-filter {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.price-filter-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.price-filter-track {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: #2b2b2b;
  overflow: hidden;
}

.price-filter-range {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--accent-orange), var(--primary));
}

.price-filter-sliders {
  position: relative;
  height: 24px;
  margin-top: 2px;
}

.price-filter-sliders input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  margin: 0;
  pointer-events: none;
  background: none;
  -webkit-appearance: none;
  appearance: none;
}

.price-filter-sliders input[type="range"]::-webkit-slider-thumb {
  pointer-events: auto;
}

.price-filter-sliders input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
}

.price-filter-sliders input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  background: transparent;
}

.price-filter-sliders input[type="range"]::-moz-range-track {
  height: 6px;
  background: transparent;
}

.price-filter-sliders input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid #111111;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.6);
  margin-top: -5px;
}

.price-filter-sliders input[type="range"]::-moz-range-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid #111111;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.6);
}

/* INVENTORY GRID */

/* Default: mobile-first (1 column) */
.inventory-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

/* Tablet: 2 columns */
@media (min-width: 720px) {
  .inventory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: ALWAYS 3 columns */
@media (min-width: 1024px) {
  .inventory-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


.car-card {
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.1s ease,
    box-shadow 0.1s ease,
    border-color 0.1s ease;
}


.car-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
  border-color: rgba(250, 204, 21, 0.7);
}

.car-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #050505;
  overflow: hidden;
}

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

.car-body {
  padding: 0.9rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.car-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.car-title h3 {
  font-size: 1rem;
}

.car-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}

.car-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.car-tags {
  margin-top: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.75rem;
}

.tag {
  background: rgba(250, 204, 21, 0.06);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  color: var(--primary);
  border: 1px solid rgba(250, 204, 21, 0.4);
}

.car-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: 0.3rem;
}

.car-actions {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.car-actions .btn {
  width: 100%;
  font-size: 0.85rem;
  padding: 0.45rem 0.9rem;
}

.inventory-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.inventory-link {
  color: var(--primary);
  font-weight: 600;
}

/* SELL */

#sell {
  padding: 3rem 1.5rem;
}

.sell-section {
  background: var(--bg-soft);
  border-radius: 18px;
  padding: 1.6rem 1.3rem;
  border: 1px solid rgba(250, 204, 21, 0.5);
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
}

.sell-highlight {
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.sell-section h3 {
  margin-bottom: 0.4rem;
}

.sell-section p {
  color: #f4f4f5;
}

.sell-list {
  list-style: none;
  font-size: 0.9rem;
  margin-top: 0.4rem;
}

.sell-list li {
  margin-bottom: 0.35rem;
  color: #f4f4f5;
}

.sell-list li::before {
  content: "➤";
  color: var(--accent-red);
  margin-right: 0.4rem;
  font-size: 0.8rem;
}

.sell-mini {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.sell-form {
  background: var(--bg-elevated);
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
}

.sell-form label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.25rem;
}

.sell-form input,
.sell-form textarea {
  width: 100%;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  margin-bottom: 0.45rem;
  background: #050505;
  color: var(--text-main);
}

.sell-form input::placeholder,
.sell-form textarea::placeholder {
  color: #737373;
}

.sell-form textarea {
  min-height: 90px;
  resize: vertical;
}

.sell-btn {
  margin-top: 0.3rem;
  width: 100%;
}

.sell-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* HUNTING */

#hunting {
  padding: 3rem 1.5rem;
}

#hunting .section-inner {
  max-width: 1100px;
}

/* hero intro */
.hunting-hero {
  max-width: 780px;
}

/* inner sub-sections */
.hunting-sub-section {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-subtle);
}

.hunting-sub-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

/* HOW IT WORKS — steps */
.hunting-steps {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hunting-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.hunting-step-num {
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--primary);
  color: #111;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}

.hunting-step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.hunting-step-body p {
  font-size: 0.9rem;
  color: #d4d4d4;
  line-height: 1.6;
}

/* PRICING — 3 cards */
.hunting-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.hunting-pricing-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(250, 204, 21, 0.35);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.hunting-card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hunting-card-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.hunting-pricing-card p {
  font-size: 0.85rem;
  color: #d4d4d4;
  line-height: 1.6;
}

.hunting-total {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #f4f4f5;
  padding: 0.85rem 1.1rem;
  background: rgba(250, 204, 21, 0.06);
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: 10px;
}

/* WHAT'S INCLUDED — checklist */
.hunting-includes {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem 2rem;
}

.hunting-includes li {
  font-size: 0.9rem;
  color: #f4f4f5;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.hunting-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* WHY DIFFERENT — 3 columns */
.hunting-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.hunting-diff-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 1.25rem;
}

.hunting-diff-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.hunting-diff-item p {
  font-size: 0.875rem;
  color: #d4d4d4;
  line-height: 1.6;
}

/* FINE PRINT */
.hunting-fineprint {
  background: rgba(250, 204, 21, 0.04);
  border: 1px solid rgba(250, 204, 21, 0.3);
  border-radius: 14px;
  padding: 1.75rem;
}

.hunting-list {
  list-style: none;
  font-size: 0.9rem;
}

.hunting-list li {
  margin-bottom: 0.55rem;
  color: #f4f4f5;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.hunting-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* FAQ */
.hunting-faq {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hunting-faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.hunting-faq-item[open] {
  border-color: rgba(250, 204, 21, 0.45);
}

.hunting-faq-q {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f9f9f9;
  cursor: pointer;
  user-select: none;
}

.hunting-faq-q::-webkit-details-marker {
  display: none;
}

.hunting-faq-q::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.hunting-faq-item[open] .hunting-faq-q::after {
  transform: rotate(45deg);
}

.hunting-faq-a {
  font-size: 0.875rem;
  color: #d4d4d4;
  line-height: 1.65;
  padding: 0 1.25rem 1.1rem;
}

/* CTA box */
.hunting-cta-box {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(250, 204, 21, 0.4);
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
}

.hunting-cta-box h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.hunting-cta-box .subheading {
  max-width: 580px;
  margin: 0 auto 1.75rem;
  font-size: 1rem;
  color: #d4d4d4;
  line-height: 1.6;
}

.hunting-cta-btn {
  font-size: 1rem;
  padding: 0.75rem 2rem;
}

.hunting-cta-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hunting-cta-note a {
  color: var(--primary);
}

/* ABOUT / REVIEWS / CONTACT */

#about,
#reviews,
#contact {
  padding: 3rem 1.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  margin-top: 1.25rem;
}

.about-extra {
  margin-top: 0.6rem;
}

.feature-list {
  list-style: none;
  margin-top: 0.5rem;
}

.feature-list li {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: #f4f4f5;
}

.feature-list li::before {
  content: "•";
  color: var(--primary);
  margin-right: 0.4rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

.pill {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.12);
  color: #fecaca;
  border: 1px solid rgba(239, 68, 68, 0.6);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.review-card {
  border-radius: 12px;
  padding: 0.9rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.review-name {
  font-weight: 600;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stars {
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  margin-top: 1.25rem;
}

form {
  display: grid;
  gap: 0.75rem;
}

.field-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.field-half {
  flex: 1;
  min-width: 0;
}

label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.25rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 0.55rem 0.6rem;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  background: #050505;
  color: var(--text-main);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #737373;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #737373 50%),
    linear-gradient(135deg, #737373 50%, transparent 50%);
  background-position:
    calc(100% - 12px) calc(50% - 3px),
    calc(100% - 7px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.contact-info {
  font-size: 0.9rem;
  color: #f4f4f5;
}

.contact-info p {
  margin-bottom: 0.4rem;
}

.map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  aspect-ratio: 16 / 7;      /* or 4 / 3 if you prefer */
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
}

/* Ensure iframe fills the box */
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-btn {
  margin-top: 0.3rem;
}

.contact-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* FOOTER */

footer {
  background: #000000;
  color: var(--text-muted);
  padding: 1.5rem;
  font-size: 0.8rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-inner a {
  color: #f4f4f5;
}

/* VEHICLE DETAIL PAGE */

#vehicle-detail {
  padding: 3rem 1.5rem;
}

/* Desktop: 2 columns – images left, summary+details right */
.vehicle-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

/* Place blocks into columns on desktop */
.vehicle-images {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vehicle-summary,
.vehicle-details {
  grid-column: 2;
}

/* Main image */

.vehicle-main-image {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  background: #050505;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
}

.vehicle-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: smooth;
}

/* Arrows */

.vehicle-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 2;
}

.vehicle-nav-prev {
  left: 8px;
}

.vehicle-nav-next {
  right: 8px;
}

.vehicle-nav:hover {
  background: rgba(0, 0, 0, 0.85);
}

.vehicle-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vehicle-thumb {
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 0;
  background: #050505;
  cursor: pointer;
}

.vehicle-thumb img {
  display: block;
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

/* Info */

.vehicle-summary {
  margin-bottom: 1rem;
}

.vehicle-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.vehicle-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.vehicle-details {
  margin-top: 0;
}

.vehicle-specs,
.vehicle-features {
  list-style: none;
  font-size: 0.9rem;
  margin: 0.4rem 0 1rem;
}

.vehicle-specs li,
.vehicle-features li {
  margin-bottom: 0.25rem;
}

.btn-carfax {
  background: #cc0000;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.65);
  font-size: 0.9rem;
  width: 100%;
}

.btn-carfax:hover {
  background: #aa0000;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.8);
}

.vehicle-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

html {
  scroll-padding-top: 90px;
}

/* Desktop-only tweak: lift vehicle images higher */
@media (min-width: 881px) {
  #vehicle-detail {
    padding-top: 2rem;           /* slightly tighter overall */
  }

  .vehicle-images {
    margin-top: -12rem;           /* pull image block upward */
  }
}


/* RESPONSIVE */

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-left {
    padding: 0 1rem;
  }

  .hero-right {
    margin-top: 1.5rem;
    min-height: 260px;
    border: none;
  }

  .about-grid,
  .contact-grid,
  .sell-section {
    grid-template-columns: 1fr;
  }

  .hunting-pricing,
  .hunting-diff-grid {
    grid-template-columns: 1fr;
  }

  .hunting-includes {
    grid-template-columns: 1fr;
  }

  .hunting-sub-heading {
    font-size: 1.25rem;
  }

  .hunting-cta-box {
    padding: 1.75rem 1.25rem;
  }

  .hunting-cta-box h2 {
    font-size: 1.4rem;
  }

  header {
    position: static;
  }

  nav ul {
    display: none;
  }

  .tagline-inline {
    display: none;
  }

  .brand-logo {
    height: 96px;
  }

  .brand-logo img {
    height: 100%;
    width: auto;
  }

  .nav {
    padding: 0.6rem 1rem;
  }

  /* Vehicle detail: stack summary -> images -> details */
  .vehicle-layout {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .vehicle-summary {
    order: 1;
  }

  .vehicle-images {
    order: 2;
  }

  .vehicle-details {
    order: 3;
  }
}
