/* ===================================================================
   Adventure Time Vehicles LLC — site styles
   Northwoods / off-road aesthetic: charcoal, tan, forest green, lake blue
   =================================================================== */

:root {
  --charcoal: #1c1f1d;
  --charcoal-soft: #2a2e2b;
  --tan: #c4a06a;
  --tan-bright: #d9b878;
  --forest: #2f4a3c;
  --forest-light: #3f6151;
  --lake: #2c6178;
  --cream: #f5f1e8;
  --cream-dim: #e7e0d2;
  --ink: #16181a;
  --muted: #6f7670;
  --line: rgba(0, 0, 0, 0.1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --maxw: 1120px;
  --head: "Oswald", "Arial Narrow", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

a { color: var(--lake); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section--tight { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.section--cream { background: var(--cream); }
.section--dim { background: var(--cream-dim); }
.section--forest { background: var(--forest); color: var(--cream); }
.section--forest h1, .section--forest h2, .section--forest h3 { color: #fff; }

.eyebrow {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: var(--tan);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.lead { font-size: 1.15rem; color: #33392f; max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.7rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--tan); color: var(--ink); }
.btn--primary:hover { background: var(--tan-bright); box-shadow: var(--shadow); }
.btn--ghost { border-color: var(--cream); color: var(--cream); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn--dark { background: var(--charcoal); color: var(--cream); }
.btn--dark:hover { background: #000; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(28, 31, 29, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--tan);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 1.5rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand img { height: 52px; width: auto; }
.brand-text { font-family: Georgia, "Times New Roman", serif; text-transform: uppercase; color: var(--cream); line-height: 1.05; }
.brand-text strong { display: block; font-size: 1.1rem; letter-spacing: 1px; font-weight: 700; }
.brand-text span { font-size: 0.68rem; letter-spacing: 2px; color: var(--tan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  color: var(--cream);
}
.nav-links a:hover, .nav-links a.active { color: var(--tan); text-decoration: none; }
.nav-phone {
  font-family: var(--head);
  background: var(--tan);
  color: var(--ink) !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  white-space: nowrap;
}
.nav-phone:hover { background: var(--tan-bright); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.3rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--cream);
  margin: 5px 0;
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(rgba(20, 24, 22, 0.78), rgba(20, 24, 22, 0.86)),
    radial-gradient(circle at 70% 20%, #34503f 0%, #1c1f1d 60%);
  color: var(--cream);
  text-align: center;
  padding: clamp(3.5rem, 9vw, 7rem) 0;
}
.hero img.hero-logo {
  width: clamp(180px, 30vw, 280px);
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}
.hero h1 { color: #fff; margin-bottom: 0.6rem; }
.hero p { font-size: 1.2rem; max-width: 54ch; margin: 0 auto 2rem; color: var(--cream-dim); }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-meta {
  margin-top: 2rem;
  font-family: var(--head);
  letter-spacing: 1px;
  color: var(--tan);
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* ---------- Page banner (interior pages) ---------- */
.banner {
  background:
    linear-gradient(rgba(20, 24, 22, 0.82), rgba(20, 24, 22, 0.88)),
    radial-gradient(circle at 30% 30%, #34503f 0%, #1c1f1d 65%);
  color: var(--cream);
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}
.banner h1 { color: #fff; }
.banner p { color: var(--cream-dim); max-width: 60ch; margin: 0 auto; }

/* ---------- Grid / cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.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: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}
.card h3 { color: var(--forest); }
.card .icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--forest);
  color: var(--tan);
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.card--flat { box-shadow: none; background: #fff; }

.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.feature-list li::before {
  content: "▸";
  position: absolute; left: 0;
  color: var(--tan);
  font-weight: bold;
}

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat .num { font-family: var(--head); font-size: 2.6rem; color: var(--tan); line-height: 1; }
.stat .label { text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; }

/* ---------- FAQ accordion ---------- */
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.1rem 1.3rem;
  font-family: var(--head);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--forest);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q::after { content: "+"; font-size: 1.6rem; color: var(--tan); transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 1.3rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-a { padding: 0 1.3rem 1.2rem; max-height: 600px; }

/* ---------- eBay store mockup ---------- */
.store-bar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}
.store-bar .ebay-badge {
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
}
.ebay-badge .e { color: #e53238; } .ebay-badge .b { color: #0064d2; }
.ebay-badge .a { color: #f5af02; } .ebay-badge .y { color: #86b817; }
.store-search { display: flex; gap: 0.5rem; flex: 1; min-width: 240px; max-width: 460px; }
.store-search input {
  flex: 1; padding: 0.6rem 0.9rem; border: 1px solid var(--line);
  border-radius: 6px; font-size: 0.95rem;
}

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-img {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #e7e0d2, #cbbfa6);
  display: grid; place-items: center;
  color: var(--forest);
  font-size: 2.5rem;
}
.product-body { padding: 0.9rem 1rem 1.1rem; display: flex; flex-direction: column; flex: 1; }
.product-body h4 {
  font-family: var(--body); font-weight: 600; text-transform: none;
  font-size: 0.95rem; letter-spacing: 0; margin: 0 0 0.4rem; line-height: 1.3;
}
.product .cond { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.5rem; }
.product .cond.new { color: var(--y, #5a8a00); }
.product .price { font-family: var(--head); font-size: 1.35rem; color: var(--ink); margin-top: auto; }
.product .ship { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.7rem; }
.product .btn { padding: 0.55rem 1rem; font-size: 0.82rem; text-align: center; }

.placeholder-note {
  background: #fff8e6;
  border: 1px dashed var(--tan);
  border-radius: 10px;
  padding: 1rem 1.3rem;
  font-size: 0.9rem;
  color: #6a5827;
  margin-bottom: 2rem;
}
.placeholder-note strong { color: #4a3d14; }

/* ---------- Contact ---------- */
.info-row { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 1.3rem; }
.info-row .ico { color: var(--tan); font-size: 1.3rem; line-height: 1.4; }
.form-field { margin-bottom: 1.1rem; }
.form-field label {
  display: block; font-family: var(--head); text-transform: uppercase;
  letter-spacing: 1px; font-size: 0.82rem; margin-bottom: 0.35rem; color: var(--forest);
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 0.7rem 0.9rem; border: 1px solid #cfc8b8;
  border-radius: 8px; font-size: 1rem; font-family: var(--body); background: #fff;
}
.form-field textarea { min-height: 130px; resize: vertical; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--tan);
  color: var(--ink);
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.cta-band h2 { color: var(--ink); }
.cta-band p { max-width: 50ch; margin: 0 auto 1.5rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: var(--cream-dim);
  padding: 3rem 0 1.5rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
.site-footer h4 { color: var(--tan); font-size: 1rem; margin-bottom: 1rem; }
.site-footer a { color: var(--cream-dim); }
.site-footer a:hover { color: var(--tan); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-brand img { height: 70px; margin-bottom: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem; padding-top: 1.3rem;
  font-size: 0.85rem; text-align: center; color: var(--muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid--3, .grid--4, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--charcoal); padding: 1rem 1.5rem;
    gap: 0.3rem; display: none;
    border-bottom: 3px solid var(--tan);
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .brand-text strong { font-size: 1rem; }
}
@media (max-width: 480px) {
  .grid--3, .grid--4, .product-grid, .grid--2 { grid-template-columns: 1fr; }
}
