/* ============================================================
   GOLD HORSE LEASING — Commercial Truck Leasing & Rental
   Design system v1 — family-owned since 1919 / Maurice Schwartz & Sons
   ============================================================ */

:root {
  --ink: #0c0f14;
  --ink-2: #12161d;
  --ink-3: #1b222c;
  --ink-4: #242d3a;
  --gold: #c9a227;
  --gold-light: #e6c968;
  --gold-dark: #a3841d;
  --paper: #f5f2eb;
  --paper-2: #ece7db;
  --text: #e9e7e0;
  --muted: #9aa3af;
  --line: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(12, 15, 20, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --font-display: "Barlow Condensed", "Arial Narrow", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  min-width: 0;
}

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1160px, 92%); margin-inline: auto; }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.98;
}

.kicker {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.02;
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--muted);
  max-width: 62ch;
  font-size: 1.06rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.95rem 1.7rem;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

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

.btn-outline { border-color: rgba(201, 162, 39, 0.55); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--gold); background: rgba(201, 162, 39, 0.08); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 15, 20, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 2px solid var(--gold);
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold);
  background: var(--ink-2);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
  white-space: nowrap;
}
.brand-name small { display: block; font-size: 0.62rem; letter-spacing: 0.3em; color: var(--muted); font-weight: 500; margin-top: 0.25rem; }

.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s ease;
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--gold-light); }
.nav-cta .btn { padding: 0.7rem 1.2rem; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  padding: 6rem 0 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(12, 15, 20, 0.94) 0%, rgba(12, 15, 20, 0.72) 45%, rgba(12, 15, 20, 0.35) 100%),
    linear-gradient(0deg, var(--ink) 2%, transparent 40%);
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero h1 {
  font-size: clamp(3rem, 8vw, 5.6rem);
  color: #fff;
  margin-bottom: 1.2rem;
}
.hero h1 .gold { color: var(--gold-light); }
.hero-sub {
  font-size: 1.18rem;
  color: #d3d6db;
  max-width: 56ch;
  margin-bottom: 2.2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--gold); color: var(--ink); }
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.4rem 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.trust-item .dot { font-size: 1.3rem; line-height: 1; }

/* ---------- Sections ---------- */
.section { padding: 5.5rem 0; }
.section-dark { background: var(--ink); }
.section-dark-2 { background: var(--ink-2); }
.section-light { background: var(--paper); color: var(--ink); }
.section-light .section-lead { color: #5b5f66; }
.section-light .kicker { color: var(--gold-dark); }

.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin-inline: auto; }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }

.card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(201, 162, 39, 0.4); }
.card .card-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.8rem;
}
.card p { color: var(--muted); font-size: 0.98rem; }
.card ul { margin-top: 1rem; display: grid; gap: 0.45rem; }
.card ul li { color: var(--text); font-size: 0.94rem; padding-left: 1.25rem; position: relative; }
.card ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.card-light { background: #fff; border-color: var(--line-dark); color: var(--ink); }
.card-light h3 { color: var(--ink); }
.card-light p { color: #5b5f66; }
.card-light ul li { color: var(--ink); }

/* ---------- Image blocks ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-body .kicker { margin-bottom: 0.6rem; }
.split-body h2 { margin-bottom: 1rem; }
.split-body p { color: var(--muted); margin-bottom: 1.1rem; }
.split-body ul { display: grid; gap: 0.6rem; margin: 1.4rem 0 1.8rem; }
.split-body ul li { padding-left: 1.5rem; position: relative; color: var(--text); }
.split-body ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(120deg, rgba(201, 162, 39, 0.16), rgba(201, 162, 39, 0.02)),
    var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: 0.8rem; }
.cta-band p { color: var(--muted); max-width: 56ch; margin: 0 auto 2rem; }
.cta-band .btn { margin: 0 0.4rem; }

/* ---------- Footer ---------- */
.site-footer { background: #080a0d; border-top: 1px solid var(--line); padding: 4rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .brand-name { margin-bottom: 1rem; }
.footer-brand p { color: var(--muted); font-size: 0.95rem; max-width: 34ch; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-col a, .footer-col p { display: block; color: var(--muted); font-size: 0.95rem; margin-bottom: 0.55rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.85rem;
}
.footer-bottom .family { color: var(--gold); font-weight: 600; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  padding: 5.5rem 0 3.5rem;
  background:
    radial-gradient(900px 300px at 20% -10%, rgba(201, 162, 39, 0.14), transparent 60%),
    var(--ink);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); color: #fff; margin-bottom: 1rem; }
.page-hero p { color: var(--muted); max-width: 60ch; font-size: 1.08rem; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.4rem;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
.form-card label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4a4f57;
  margin-bottom: 0.4rem;
}
.form-card input, .form-card select, .form-card textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.form-card textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.85rem; color: #5b5f66; margin-top: 0.9rem; }

.contact-side h3 { margin-bottom: 1rem; }
.contact-side .c-line { display: flex; gap: 0.9rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-side .c-line .ico { color: var(--gold); font-family: var(--font-display); font-weight: 700; }
.contact-side .c-line .t { color: var(--text); font-size: 1.05rem; font-weight: 600; }
.contact-side .c-line .s { color: var(--muted); font-size: 0.9rem; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse { direction: ltr; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 6%;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 1rem 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-phone { display: none; }
  .hero { min-height: auto; padding: 5rem 0 4.5rem; }
  .hero-sub { font-size: 1.05rem; }
  .section { padding: 4rem 0; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .trust-inner { grid-template-columns: 1fr; gap: 0.9rem; }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
