/* No Hassle Cars — cars.no-hassle.com
   Sibling of the travel site (same type family) but a harder, more grounded
   palette: graphite + burnt amber. The competition here is a slick showroom,
   so the page should read plain-spoken and solid rather than luxurious. */

:root {
  --paper: #f6f5f2;
  --card: #fffefb;
  --ink: #1d2023;
  --ink-soft: #33383c;
  --slate: #5c6063;
  --accent: #9c5a2d;
  --accent-soft: #c08a5e;
  --line: #e2ded6;

  --font-serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--slate); }

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

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

section { padding: 104px 0; }

.section-heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-align: center;
  margin-bottom: 48px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 245, 242, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; }
.logo span { color: var(--accent); }

.site-nav { display: flex; align-items: center; gap: 30px; font-size: 0.9rem; }
.site-nav a:hover { color: var(--accent); }

.nav-cta {
  border: 1px solid var(--ink);
  padding: 9px 18px;
  border-radius: 3px;
  font-size: 0.85rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--paper); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 3px;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--accent); }

.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-cta { background: var(--accent); color: #fff; padding: 16px 36px; }
.btn-cta:hover { background: var(--accent-soft); }

/* ---------- Hero ---------- */

.hero { padding: 13vh 0 96px; }
.hero-inner { max-width: 780px; margin: 0 auto; text-align: center; }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 26px;
}
.hero h1 em { font-style: italic; color: var(--accent); }

.hero-sub {
  font-size: 1.12rem;
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-note { font-size: 0.86rem; color: var(--accent-soft); margin: 0; }

/* ---------- Edge ---------- */

.edge { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.edge-inner { max-width: 960px; margin: 0 auto; }

.edge-lede {
  text-align: center;
  max-width: 660px;
  margin: -28px auto 52px;
  font-size: 1.04rem;
}

.edge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.edge-card { border-top: 2px solid var(--accent); padding-top: 20px; }
.edge-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.edge-card p { font-size: 0.93rem; margin: 0; }

/* ---------- How it works ---------- */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step-n {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-serif);
  font-weight: 600;
  margin-bottom: 16px;
}

.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; margin: 0; }

/* ---------- Trade-in ---------- */

.tradein { background: var(--ink); color: var(--paper); }
.tradein-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.tradein h2 { color: var(--paper); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 24px; }
.tradein p { color: #c9ccce; font-size: 1.04rem; }
.tradein .eyebrow { color: var(--accent-soft); }

/* ---------- Fee ---------- */

.fee-inner { max-width: 620px; margin: 0 auto; text-align: center; }

.fee-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px 36px;
  box-shadow: 0 2px 18px rgba(29, 32, 35, 0.05);
}

.fee-amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px;
}

.fee-basis { font-size: 0.86rem; color: var(--slate); margin-bottom: 28px; }

.fee-list { list-style: none; margin: 0; padding: 0; text-align: left; }

.fee-list li {
  font-size: 0.95rem;
  color: var(--slate);
  padding: 11px 0 11px 26px;
  border-top: 1px solid var(--line);
  position: relative;
}

.fee-list li:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 19px;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

.fee-note { font-size: 0.95rem; margin: 28px 0 0; }

/* ---------- Scope ---------- */

.scope { background: var(--card); border-top: 1px solid var(--line); }
.scope-inner { max-width: 900px; margin: 0 auto; }

.scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 44px; }

.scope-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.scope-item h3:before { content: "— "; color: var(--accent); }
.scope-item p { font-size: 0.93rem; margin: 0; }

/* ---------- FAQ ---------- */

.faq-grid {
  margin: 0 auto;
  max-width: 960px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}

.faq-item dt { font-family: var(--font-serif); font-weight: 600; font-size: 1.08rem; margin-bottom: 8px; }
.faq-item dd { margin: 0; font-size: 0.95rem; color: var(--slate); }

/* ---------- Talk / contact ---------- */

.talk { background: var(--ink); color: var(--paper); }
.talk-inner { max-width: 660px; margin: 0 auto; text-align: center; }
.talk-heading { color: var(--paper); }
.talk-sub { color: #c9ccce; font-size: 1.04rem; margin-bottom: 34px; }

.talk-form { margin-top: 56px; text-align: left; }

.talk-form-intro {
  color: #a9adb0;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 22px;
}

.hidden-field { display: none; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { margin-bottom: 20px; }

.field label {
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #a9adb0;
}

.field input, .field textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid #3a3f43;
  border-radius: 3px;
  padding: 11px 13px;
}

.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent-soft); }
.field textarea { resize: vertical; }

/* The submit sits on the dark band, where btn-primary's ink background
   would be invisible against it — invert to paper. */
.talk-form .btn-primary { background: var(--paper); color: var(--ink); }
.talk-form .btn-primary:hover { background: var(--accent); color: #fff; }

.form-status { font-size: 0.9rem; color: var(--accent-soft); min-height: 1.2em; margin: 14px 0 0; }
.form-privacy { font-size: 0.8rem; color: #8b8f92; margin: 6px 0 0; }

/* ---------- Footer ---------- */

.site-footer { border-top: 1px solid var(--line); padding: 30px 0; }

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.84rem;
  color: var(--slate);
  flex-wrap: wrap;
}

.footer-note { font-style: italic; }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .edge-grid { grid-template-columns: 1fr; gap: 28px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 34px; }
  .scope-grid { grid-template-columns: 1fr; gap: 30px; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 0; }
  .site-header { position: static; }
  .header-inner { flex-direction: column; gap: 14px; padding: 16px 0; }
  .site-nav { flex-wrap: wrap; justify-content: center; gap: 10px 18px; font-size: 0.84rem; }
  .nav-cta { order: 5; }
  section { padding: 68px 0; }
  .hero { padding-top: 8vh; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}
