/* ═══════════════════════════════════════════════════
   THE CITY TRUCK CO. — SHARED STYLES v3
   Bodoni Moda · Josefin Sans
   Dark #13110e · Gold #c8a84b · Cream #faf6ee
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,300;0,6..96,400;0,6..96,500;0,6..96,700;1,6..96,300;1,6..96,400;1,6..96,500&family=Josefin+Sans:wght@100;200;300;400;600&display=swap');

:root {
  --dark:     #13110e;
  --charcoal: #1c1a16;
  --mid:      #5a5248;
  --muted:    #8a8070;
  --cream:    #faf6ee;
  --white:    #fdfcfa;
  --gold:     #c8a84b;
  --gold-lt:  #e2c97a;
  --gold-dk:  #9a7c30;
  --ink:      #1a1712;
  --radius:   10px;
  --radius-lg:18px;
  --max:      1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  letter-spacing: 0.02em;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── LOGO ── */
.ctc-logo-frame {
  border: 1px solid #1a1712;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ctc-logo-frame::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid #c8bfaa;
  pointer-events: none;
}
.ctc-name {
  font-family: 'Bodoni Moda', serif;
  color: #1a1712;
  letter-spacing: 0.07em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.ctc-dark .ctc-logo-frame  { border-color: #ede3cc; }
.ctc-dark .ctc-logo-frame::before { border-color: #2e2a22; }
.ctc-dark .ctc-name        { color: #ede3cc; }
.ctc-header-logo .ctc-logo-frame { padding: 8px 18px; }
.ctc-header-logo .ctc-logo-frame::before { inset: 3px; }
.ctc-header-logo .ctc-name { font-weight: 500; font-size: 15px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  background: rgba(19,17,14,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,168,75,0.12);
}
.nav-logo-wrap { display: flex; align-items: center; }
.nav-logo-wrap .ctc-header-logo .ctc-logo-frame { border-color: #ede3cc; }
.nav-logo-wrap .ctc-header-logo .ctc-logo-frame::before { border-color: #2e2a22; }
.nav-logo-wrap .ctc-header-logo .ctc-name { color: #ede3cc; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300; font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300; font-size: 0.68rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold); padding: 9px 20px; border-radius: 2px;
  transition: all 0.2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--dark); }

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1px;
  background: rgba(255,255,255,0.85); transition: all 0.3s;
}

/* Mobile nav — HIDDEN BY DEFAULT */
.nav-mobile {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(19,17,14,0.98);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,168,75,0.12);
  padding: 20px 28px 28px; z-index: 199;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; }
.nav-mobile ul li a {
  display: block; padding: 13px 0;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300; font-size: 0.8rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.nav-mobile ul li a:hover { color: var(--gold); }
.nav-mobile .nav-cta-mobile {
  display: block; margin-top: 18px; text-align: center;
  background: var(--gold); color: var(--dark); padding: 13px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300; font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase; border-radius: 2px;
}

/* ── PAGE HEADER ── */
.page-header {
  background: var(--dark);
  border-bottom: 1px solid rgba(200,168,75,0.08);
  overflow: hidden;
}
.page-header-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 112px 48px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.page-header-text { /* text column */ }
.page-header-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  max-width: 420px;
  justify-self: center;
}
.page-header-img img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.page-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 100; font-size: 0.62rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.page-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.page-header h1 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400; font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white); letter-spacing: 0.02em; line-height: 1.1; margin-bottom: 16px;
}
.page-header h1 em { font-style: italic; font-weight: 300; color: var(--gold-lt); }
.page-header p {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 200; font-size: 0.9rem;
  letter-spacing: 0.05em; line-height: 1.9;
  color: rgba(255,255,255,0.82); max-width: 540px;
}

/* ── SECTIONS ── */
section { padding: 96px 48px; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 100; font-size: 0.6rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400; font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15; color: var(--ink); margin-bottom: 16px; letter-spacing: 0.02em;
}
.section-title em { font-style: italic; font-weight: 300; color: var(--gold-dk); }
.section-sub {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300; font-size: 0.9rem;
  line-height: 1.9; letter-spacing: 0.05em;
  color: #3a3028; max-width: 520px; margin-bottom: 52px;
}
.section-title-light { color: var(--white); }
.section-sub-light { color: rgba(255,255,255,0.85); }

/* ── BUTTONS ── */
.btn-gold {
  font-family: 'Josefin Sans', sans-serif; font-weight: 300; font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--gold); color: var(--dark);
  padding: 14px 30px; border-radius: 2px;
  display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-outline {
  font-family: 'Josefin Sans', sans-serif; font-weight: 200; font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  background: transparent; color: var(--ink);
  padding: 14px 30px; border-radius: 2px;
  border: 1px solid rgba(26,23,18,0.25);
  display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--ink); }
.btn-outline-white {
  font-family: 'Josefin Sans', sans-serif; font-weight: 200; font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  background: transparent; color: rgba(255,255,255,0.9);
  padding: 14px 30px; border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.3);
  display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.9); color: var(--white); }

/* ── TICKER ── */
.ticker { background: var(--gold); padding: 11px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: ticker 32s linear infinite; }
.ticker-item {
  display: inline-flex; align-items: center;
  font-family: 'Josefin Sans', sans-serif; font-weight: 200; font-size: 0.6rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dark); padding: 0 36px;
}
.ticker-item::after { content: '·'; margin-left: 36px; opacity: 0.4; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── MODEL CARD ── */
.model-card {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; cursor: pointer; background: var(--dark);
  display: block;
}
.model-card img {
  width: 100%; height: 460px; object-fit: cover;
  object-position: center 40%;
  display: block; transition: transform 0.5s ease, opacity 0.3s;
  opacity: 0.88;
}
.model-card:hover img { transform: scale(1.03); opacity: 1; }
.model-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,5,0.9) 0%, rgba(10,8,5,0.2) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px;
}
.model-card-tag {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300; font-size: 0.58rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.model-card h3 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400; font-size: 1.8rem;
  color: var(--white); letter-spacing: 0.02em;
  margin-bottom: 6px; line-height: 1.1;
}
.model-card h3 em { font-style: italic; font-weight: 300; color: var(--gold-lt); }
.model-card-price {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300; font-size: 0.8rem;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.75);
  margin-bottom: 22px;
}
.model-card-price strong {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400; font-size: 1.5rem;
  color: var(--gold-lt); margin-right: 6px;
}
.model-card-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--dark);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300; font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 12px 24px; border-radius: 2px;
  transition: background 0.2s; align-self: flex-start;
}
.model-card:hover .model-card-btn { background: var(--gold-lt); }

/* ── PREP LIST ── */
.prep-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.prep-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: 'Josefin Sans', sans-serif; font-weight: 300; font-size: 0.86rem;
  letter-spacing: 0.04em; line-height: 1.6; color: #2e261e;
}
.prep-list li::before { content: '✓'; color: var(--gold); font-weight: 400; flex-shrink: 0; margin-top: 2px; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid rgba(26,23,18,0.07); }
.faq-question {
  width: 100%; background: none; border: none; color: var(--ink);
  font-family: 'Bodoni Moda', serif; font-weight: 400; font-size: 1rem;
  letter-spacing: 0.02em; text-align: left; padding: 22px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  transition: color 0.2s; line-height: 1.35;
}
.faq-question:hover, .faq-question.faq-active { color: var(--gold-dk); }
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  border: 1px solid rgba(200,168,75,0.35); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; font-size: 1.1rem; color: var(--gold);
}
.faq-question.faq-active .faq-icon {
  border-color: var(--gold); transform: rotate(45deg);
  background: var(--gold); color: var(--dark);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer.faq-open { max-height: 500px; padding-bottom: 24px; }
.faq-answer p {
  font-family: 'Josefin Sans', sans-serif; font-weight: 300; font-size: 0.88rem;
  letter-spacing: 0.04em; line-height: 1.9; color: #2e261e;
}
.faq-answer strong { font-weight: 400; color: var(--gold-dk); }
.faq-answer a { color: var(--gold-dk); }

/* ── FOOTER ── */
footer { background: #080806; padding: 48px; border-top: 1px solid rgba(200,168,75,0.07); }
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-links a {
  font-family: 'Josefin Sans', sans-serif; font-weight: 100; font-size: 0.62rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6); transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-right {
  text-align: right; font-family: 'Josefin Sans', sans-serif; font-weight: 100;
  font-size: 0.6rem; letter-spacing: 0.08em; line-height: 1.9; color: rgba(255,255,255,0.55);
}
.footer-right a { color: rgba(255,255,255,0.3); }
.footer-right a:hover { color: var(--gold); }

/* ── FORMS ── */
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: 'Josefin Sans', sans-serif; font-weight: 400; font-size: 0.68rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.9);
}
.form-input {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(200,168,75,0.4);
  border-radius: 4px; padding: 13px 16px;
  font-family: 'Josefin Sans', sans-serif; font-weight: 300; font-size: 0.88rem;
  letter-spacing: 0.04em; color: #fff; transition: border-color 0.2s, background 0.2s;
  width: 100%; outline: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.5); }
.form-input:focus { border-color: var(--gold); background: rgba(200,168,75,0.08); }
select.form-input { cursor: pointer; -webkit-appearance: none; }
select.form-input option { background: #1c1a16; color: #fff; }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-submit {
  font-family: 'Josefin Sans', sans-serif; font-weight: 300; font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--gold); color: var(--dark); border: none;
  padding: 16px 48px; border-radius: 2px; cursor: pointer; transition: all 0.2s;
}
.form-submit:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp 0.7s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }
.fade-up-4 { animation-delay: 0.55s; }

/* ── COOKIE BANNER ── */
#cookie-banner {
  display: none; position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 999; background: var(--charcoal);
  border: 1px solid rgba(200,168,75,0.2); border-radius: var(--radius);
  padding: 20px 28px; max-width: 560px; width: calc(100% - 40px);
  align-items: center; gap: 20px; flex-wrap: wrap;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
#cookie-banner p {
  font-family: 'Josefin Sans', sans-serif; font-weight: 200; font-size: 0.78rem;
  letter-spacing: 0.04em; line-height: 1.7; color: rgba(255,255,255,0.82);
  flex: 1; min-width: 200px;
}
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
#cookie-accept {
  background: var(--gold); color: var(--dark); border: none;
  font-family: 'Josefin Sans', sans-serif; font-weight: 300; font-size: 0.64rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 2px; cursor: pointer;
}
#cookie-decline {
  background: transparent; color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  font-family: 'Josefin Sans', sans-serif; font-weight: 200; font-size: 0.64rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 2px; cursor: pointer;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; height: 64px; }
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { top: 64px; }
  section { padding: 64px 20px; }
  .page-header-inner { grid-template-columns: 1fr; padding: 100px 20px 48px; gap: 28px; }
  .page-header-img { max-width: 100%; justify-self: stretch; }
  .page-header-img img { max-height: 220px; }
  footer { padding: 40px 20px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-right { text-align: center; }
}
