/* Auto House — public showroom */
:root {
  --ah-dark: #0c0e12;
  --ah-dark-mid: #141820;
  --ah-accent: #c9a227;
  --ah-accent-hover: #e0b82e;
  --ah-text: #e8eaef;
  --ah-muted: #8b929e;
  --ah-surface: #ffffff;
  --ah-border: #e2e5ea;
}

body.auto-house {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 64px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #f4f5f7;
  color: #1a1d24;
}

.ah-navbar {
  height: 64px;
  background: var(--ah-dark) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 1030;
}

.ah-navbar .navbar-brand {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.15rem;
  color: #fff !important;
}

.ah-logo {
  height: 40px;
  width: auto;
  max-width: min(200px, 48vw);
  object-fit: contain;
  display: block;
}

.ah-navbar .brand-accent {
  color: var(--ah-accent);
}

.ah-navbar .nav-link {
  color: rgba(255, 255, 255, 0.78) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.85rem !important;
}

.ah-navbar .nav-link:hover {
  color: #fff !important;
}

.ah-hero {
  position: relative;
  min-height: min(72vh, 520px);
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
}

.ah-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.ah-hero-logo {
  height: clamp(4.25rem, 100vw, 15rem);
  width: auto;
  max-width: min(380px, 90vw);
  object-fit: contain;
  display: block;
  margin-bottom: 1.5rem;
}

.ah-hero h1 {
  color: var(--ah-text);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-size: clamp(2rem, 5vw, 3.25rem);
  max-width: 16ch;
}

.ah-hero .lead {
  color: var(--ah-muted);
  font-size: 1.1rem;
  max-width: 36ch;
  margin-top: 1rem;
}

.ah-hero .btn-gold {
  background: var(--ah-accent);
  border: none;
  color: var(--ah-dark);
  font-weight: 600;
  padding: 0.65rem 1.35rem;
}

.ah-hero .btn-gold:hover {
  background: var(--ah-accent-hover);
  color: var(--ah-dark);
}

.ah-hero .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--ah-text);
  font-weight: 500;
}

.ah-hero .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.ah-section {
  flex: 1;
  padding: 2.5rem 0 3rem;
}

.ah-section-title {
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.ah-section-sub {
  color: #5c6370;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.ah-table-card {
  background: var(--ah-surface);
  border-radius: 0.75rem;
  border: 1px solid var(--ah-border);
  box-shadow: 0 4px 24px rgba(15, 20, 30, 0.06);
  overflow: hidden;
}

.ah-table-card .table {
  margin-bottom: 0;
}

.ah-table-card thead th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  font-weight: 600;
  border-bottom-width: 1px;
  background: #fafbfc;
  padding: 0.85rem 1rem;
  white-space: nowrap;
}

.ah-table-card tbody td {
  padding: 0.9rem 1rem;
  vertical-align: middle;
  font-size: 0.925rem;
}

.ah-table-card tbody tr:hover {
  background: rgba(201, 162, 39, 0.04);
}

.ah-price {
  font-weight: 600;
  color: #1a1d24;
  font-variant-numeric: tabular-nums;
}

.ah-badge-stock {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ah-footer {
  background: var(--ah-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 2.5rem 0 1.5rem;
  margin-top: auto;
  font-size: 0.875rem;
}

.ah-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.ah-footer a:hover {
  color: var(--ah-accent);
}

.ah-footer .footer-brand {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.ah-footer .footer-heading {
  color: #fff;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

@media (max-width: 991.98px) {
  .ah-navbar .navbar-collapse {
    background: var(--ah-dark-mid);
    padding: 1rem;
    margin: 0.5rem -0.5rem 0;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
}
