/* ===== Pack Mule Hauling — forest green & cream, matched to the badge logo ===== */

:root {
  --cream: #f1ede0;
  --panel: #faf8f0;
  --ink: #26241c;
  --muted: #6d6a56;
  --green: #2f3e2a;      /* badge border green */
  --green-mid: #3c5138;
  --green-deep: #1b2417; /* darkest, footer/services */
  --green-card: #27331f;
  --rust: #a9622f;       /* sunset rock accent, used sparingly */
  --line: #ddd6c2;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, .wordmark span, .footer-brand {
  font-family: "Cinzel", "Trajan Pro", serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .03em;
  text-transform: uppercase;
}

a { color: var(--rust); }

.kicker {
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--rust);
  margin-bottom: .6rem;
}

/* ===== Top bar ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem clamp(1rem, 4vw, 2.5rem);
  background: color-mix(in srgb, var(--cream) 90%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--green);
  text-decoration: none;
  white-space: nowrap;
}
.wordmark img { display: block; }
.wordmark .mark-text { height: 24px; width: auto; }
.footer-brand em { font-style: normal; color: var(--rust); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .78rem 1.5rem;
  border: none;
  border-radius: 6px;
  font: 700 1rem "Inter", sans-serif;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 3px 14px rgba(47, 62, 42, .35);
}
.btn-primary:hover { background: var(--green-deep); }

.btn-ghost {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-ghost:hover { background: var(--green); color: var(--cream); }

.btn-call {
  background: var(--green);
  color: var(--cream);
  padding: .55rem 1.1rem;
  font-size: .95rem;
  border-radius: 6px;
}
.btn-call:hover { background: var(--green-deep); }
.btn-call svg { width: 18px; height: 18px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2.5rem) 0;
  overflow: hidden;
  text-align: center;
}
.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: clamp(8rem, 18vw, 12rem);
  position: relative;
  z-index: 1;
}
.hero-logo {
  width: min(520px, 92%);
  height: auto;
  margin-bottom: 1.8rem;
  filter: drop-shadow(0 12px 28px rgba(27, 36, 23, .25));
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  color: var(--green);
  margin-bottom: 1.1rem;
}
.lede {
  max-width: 36rem;
  margin: 0 auto 1.8rem;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  color: var(--muted);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  margin-bottom: 1.5rem;
}
.trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem 1.4rem;
  list-style: none;
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
}
.trust li::before { content: "✓ "; color: var(--green-mid); font-weight: 800; }

.ridge {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: clamp(90px, 14vw, 180px);
  display: block;
}

/* ===== Sections ===== */
.section { padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 4vw, 2.5rem); }
.section-inner { max-width: 1060px; margin: 0 auto; }
.section-inner.narrow { max-width: 640px; }

.section h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); margin-bottom: .6rem; color: var(--green); }
.section-sub { color: var(--muted); margin-bottom: 2rem; max-width: 40rem; }

/* ===== Services (deep green like the badge) ===== */
.services { background: var(--green-deep); color: var(--cream); }
.services h2 { color: var(--cream); }
.services .kicker { color: #c9a377; }
.services .section-sub { color: #b9bfa9; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.card {
  background: var(--green-card);
  border: 1px solid #3a4a30;
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: transform .15s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-3px); border-color: #c9a377; }
.card h3 {
  font-family: "Cinzel", serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1rem;
  margin-bottom: .5rem;
  color: #e8dfc8;
}
.card p { font-size: .95rem; color: #c5cbb5; }

.fine { margin-top: 1.6rem; font-size: .9rem; color: var(--muted); }
.services .fine { color: #9aa18b; }
.nowrap { white-space: nowrap; }

/* ===== How it works ===== */
.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.steps li {
  counter-increment: step;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.4rem 4rem;
  position: relative;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1.1rem;
  top: 1.15rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--cream);
  border-radius: 50%;
  font: 800 1rem "Inter", sans-serif;
}

/* ===== Service area ===== */
.area { background: var(--green-mid); color: #eef2e9; }
.area h2 { color: #fff; }
.area .kicker { color: #d9bb90; }
.area .section-sub { color: #cdd8c3; }
.area .fine { color: #b3c2a8; }
.towns {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.towns li {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  padding: .45rem 1.1rem;
  font-weight: 600;
  font-size: .95rem;
}

/* ===== Positioning strip ===== */
.strip {
  background: var(--green);
  color: var(--cream);
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 4vw, 2.5rem);
}
.strip-headline {
  font-family: "Cinzel", serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(1.4rem, 3.5vw, 2.1rem);
  margin-bottom: .7rem;
}
.strip-sub {
  max-width: 42rem;
  margin: 0 auto;
  color: #cdd5c2;
  font-size: 1.05rem;
}

/* ===== B2B ===== */
.b2b { background: var(--cream); padding-bottom: 0; }
.b2b-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  text-align: center;
}
.b2b-card h2 { margin-bottom: .8rem; }
.b2b-card > p {
  max-width: 44rem;
  margin: 0 auto 1.5rem;
  color: var(--muted);
}
.b2b-card .cta-row { justify-content: center; margin-bottom: 0; }

/* ===== FAQ ===== */
.faq details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 1.2rem;
  margin-bottom: .7rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 1rem 0;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: .2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--rust);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 1.1rem; color: var(--muted); }

/* ===== Quote form ===== */
.quote { background: var(--cream); }
.field { margin-bottom: 1rem; display: flex; flex-direction: column; gap: .35rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-weight: 700; font-size: .9rem; }
.field input, .field select, .field textarea {
  font: 400 1rem "Inter", sans-serif;
  color: var(--ink);
  background: var(--panel);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: .7rem .85rem;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(60, 81, 56, .2);
}
.btn-submit { width: 100%; padding: .95rem; font-size: 1.05rem; margin-top: .4rem; }
.btn-submit:disabled { opacity: .65; cursor: default; transform: none; }

.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-status { margin-top: 1rem; font-weight: 600; min-height: 1.5em; }
.form-status.ok { color: var(--green-mid); }
.form-status.err { color: #a33116; }

/* ===== Footer ===== */
.footer { background: var(--green-deep); color: #b9bfa9; padding: 2.5rem clamp(1rem, 4vw, 2.5rem) 1.5rem; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-brand { font-size: 1.15rem; color: var(--cream); margin-bottom: .3rem; }
.footer-tag { font-style: italic; color: #c9a377; margin-bottom: .3rem; }
.footer-contact { display: flex; flex-direction: column; gap: .3rem; text-align: right; }
.footer-contact a { color: #e8dfc8; text-decoration: none; font-weight: 600; }
.footer-contact a:hover { color: #c9a377; }
.footer-fine {
  max-width: 1060px;
  margin: 0 auto;
  border-top: 1px solid #3a4a30;
  padding-top: 1.2rem;
  font-size: .85rem;
  color: #7d8570;
}

@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .btn-call span { display: none; }
  .btn-call { padding: .6rem .7rem; }
  .wordmark .mark-badge { display: none; }
  .wordmark .mark-text { height: 20px; }
  .footer-contact { text-align: left; }
}
