/* ==========================================================================
   Monsur LLC — Shared Styles
   ========================================================================== */

:root {
  --black: #0d0d0d;
  --near-black: #161616;
  --charcoal: #232323;
  --gold: #c9a227;
  --gold-light: #e0c05c;
  --white: #ffffff;
  --off-white: #f4f2ec;
  --gray: #8a8a8a;
  --max-width: 1160px;
  --radius: 6px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.6;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* -------------------- Header / Nav -------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.logo-tagline {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--gray);
  font-weight: 400;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--off-white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  display: block;
}

/* -------------------- Hero -------------------- */
.hero {
  background: linear-gradient(rgba(13, 13, 13, 0.72), rgba(13, 13, 13, 0.82)),
    repeating-linear-gradient(135deg, #1a1a1a 0px, #1a1a1a 2px, #141414 2px, #141414 40px);
  color: var(--white);
  padding: 100px 24px 90px;
  text-align: center;
}

.hero-eyebrow {
  color: var(--gold);
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 18px 0 16px;
  font-weight: 700;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.05rem;
  color: var(--off-white);
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0.85;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-hero {
  padding: 70px 24px;
}

.page-hero h1 {
  font-size: 2.1rem;
  margin-top: 10px;
}

/* -------------------- Sections -------------------- */
section {
  padding: 80px 0;
}

.section-alt {
  background: var(--white);
}

.section-dark {
  background: var(--black);
  color: var(--off-white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  font-weight: 700;
}

.section-header h2 {
  font-size: 2rem;
  margin: 14px 0 12px;
}

.section-header p {
  color: var(--gray);
}

.section-dark .section-header p {
  color: rgba(244, 242, 236, 0.7);
}

/* -------------------- Grid Cards -------------------- */
.grid {
  display: grid;
  gap: 28px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}

.card h3 {
  font-size: 1.15rem;
  margin: 10px 0 10px;
}

.card p {
  color: var(--gray);
  font-size: 0.95rem;
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
}

/* -------------------- Pricing -------------------- */
.pricing-note {
  background: var(--white);
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--charcoal);
  font-size: 0.92rem;
  max-width: 780px;
  margin: 0 auto 48px;
}

.pricing-card {
  background: var(--near-black);
  color: var(--off-white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  border-top: 3px solid var(--gold);
}

.pricing-card.featured {
  background: var(--gold);
  color: var(--black);
}

.pricing-card .price {
  font-size: 2.3rem;
  font-weight: 700;
  margin: 14px 0 6px;
}

.pricing-card .price span {
  font-size: 0.95rem;
  font-weight: 400;
  opacity: 0.75;
}

.pricing-card ul {
  list-style: none;
  margin: 22px 0 26px;
  text-align: left;
  font-size: 0.9rem;
}

.pricing-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card.featured ul li {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

/* -------------------- Vehicles -------------------- */
.vehicle-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.vehicle-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--black), var(--charcoal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.vehicle-body {
  padding: 22px 24px;
}

.vehicle-body h3 {
  margin-bottom: 6px;
}

.vehicle-body .meta {
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.vehicle-body p {
  color: var(--gray);
  font-size: 0.92rem;
}

/* -------------------- Forms -------------------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d9d5c9;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--off-white);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.form-status {
  margin-top: 16px;
  font-size: 0.9rem;
  display: none;
}

.form-status.visible {
  display: block;
}

/* -------------------- Stats / About -------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat h3 {
  font-size: 2.2rem;
  color: var(--gold);
}

.stat p {
  color: var(--gray);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-media {
  height: 320px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--black), var(--charcoal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  padding: 20px;
}

.checklist {
  list-style: none;
  margin-top: 20px;
}

.checklist li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--charcoal);
}

.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* -------------------- Footer -------------------- */
.site-footer {
  background: var(--black);
  color: var(--off-white);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid ul li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: rgba(244, 242, 236, 0.75);
}

.footer-grid p {
  color: rgba(244, 242, 236, 0.75);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(244, 242, 236, 0.5);
}

/* -------------------- CTA band -------------------- */
.cta-band {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 60px 24px;
}

.cta-band h2 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.cta-band p {
  margin-bottom: 26px;
  opacity: 0.85;
}

/* -------------------- Responsive -------------------- */
@media (max-width: 900px) {
  .grid-3,
  .grid-4,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    display: none;
    border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    margin-left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
