/* Shared local-service nameplate starter */
:root {
  --ink: #14201a;
  --muted: #4d5c54;
  --bg: #f6f8f5;
  --card: #ffffff;
  --line: #d7e0d8;
  --brand: #1f6b45;
  --brand-dark: #154d31;
  --accent: #e8f3ec;
  --warn: #8a5a12;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(20,32,26,.08);
  --max: 1080px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
a { color: var(--brand-dark); }
img { max-width: 100%; display: block; }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 20;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .9rem 0;
}
.logo { text-decoration: none; color: inherit; }
.logo strong { display: block; font-size: 1.05rem; }
.logo span { display: block; color: var(--muted); font-size: .82rem; }
.site-nav ul {
  display: flex; gap: .35rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap;
}
.site-nav a {
  text-decoration: none; color: var(--ink); font-weight: 600;
  padding: .45rem .7rem; border-radius: 999px;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { background: var(--accent); }
.nav-cta {
  background: var(--brand) !important; color: #fff !important;
}
.nav-cta:hover { background: var(--brand-dark) !important; }
.hero, .page-hero {
  padding: 3rem 0 2.2rem;
  background: linear-gradient(180deg, #eef6f0, var(--bg));
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .06em; font-size: .75rem;
  font-weight: 700; color: var(--brand); margin: 0 0 .5rem;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.15; margin: 0 0 .75rem; }
h2 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); margin: 0 0 .65rem; }
h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.lede { font-size: 1.08rem; color: var(--muted); max-width: 42rem; }
.section { padding: 2.4rem 0; }
.section-alt { background: #fff; border-block: 1px solid var(--line); }
.grid-2, .grid-3 {
  display: grid; gap: 1rem; margin-top: 1.25rem;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card, .faq, .service-item, .form-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.1rem 1.15rem;
}
.service-item p, .card p, .faq p { margin: 0; color: var(--muted); }
.btn-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.2rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; font-weight: 700; border-radius: 999px;
  padding: .7rem 1.15rem; border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-outline { border-color: var(--brand); color: var(--brand-dark); background: #fff; }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.cta-band {
  background: #163526; color: #eaf4ed; text-align: center; padding: 2.6rem 0;
}
.cta-band .lede { color: #c9dbcf; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.note {
  background: #fff8e8; border: 1px solid #efd7a4; color: var(--warn);
  border-radius: 12px; padding: .85rem 1rem; margin-top: 1rem;
}
form { display: grid; gap: .85rem; }
label { font-weight: 600; display: grid; gap: .35rem; }
input, select, textarea {
  font: inherit; padding: .7rem .8rem; border-radius: 10px;
  border: 1px solid var(--line); background: #fff;
}
textarea { min-height: 120px; resize: vertical; }
.site-footer {
  background: #101914; color: #d7e3da; padding: 2rem 0 1.4rem; margin-top: 2rem;
}
.site-footer a { color: #d6ecc9; }
.foot-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.legal { margin-top: 1.4rem; border-top: 1px solid #2a3a31; padding-top: 1rem; color: #9eb0a5; font-size: .88rem; }
.faq details { margin-top: .55rem; }
.faq summary { cursor: pointer; font-weight: 700; }
@media (max-width: 720px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
}

/* ——— Exclusive-job auction / crew pages ——— */
.gate-banner {
  background: #fff8e8;
  border: 1px solid #efd7a4;
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  margin: 1rem 0 0;
  color: var(--warn);
}
.gate-banner strong { display: block; font-size: 1.05rem; margin-bottom: .25rem; color: var(--ink); }
.gate-banner p { margin: 0; color: var(--muted); }
.status-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; padding: .35rem .7rem; border-radius: 999px;
  background: #f3e6c8; color: var(--warn); border: 1px solid #efd7a4;
}
.status-pill[data-live="true"] { background: var(--accent); color: var(--brand-dark); border-color: #b7d9c4; }
.term-cards { display: grid; gap: 1rem; margin-top: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.term-card {
  background: var(--card); border: 2px solid var(--line);
  border-radius: var(--radius); padding: 1.2rem 1.25rem; position: relative;
}
.term-card.featured {
  border-color: var(--brand); box-shadow: var(--shadow);
  background: linear-gradient(180deg, #f3faf6, #fff);
}
.term-card .badge {
  position: absolute; top: .85rem; right: .85rem;
  background: var(--brand); color: #fff; font-size: .7rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: .25rem .55rem; border-radius: 999px;
}
.term-card .price {
  font-size: 1.75rem; font-weight: 800; color: var(--ink); margin: .35rem 0;
}
.term-card .price span { font-size: .95rem; font-weight: 600; color: var(--muted); }
.checklist { list-style: none; margin: .85rem 0 0; padding: 0; }
.checklist li {
  padding: .35rem 0 .35rem 1.45rem; position: relative; color: var(--muted);
}
.checklist li::before {
  content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 800;
}
.checklist.no li::before { content: "✕"; color: #a33; }
.rules-block { margin-top: 1.5rem; }
.rules-block h3 { margin-top: 1.35rem; }
.rules-block ul { color: var(--muted); }
.timeline {
  display: grid; gap: .75rem; margin-top: 1rem;
}
.timeline-item {
  display: grid; grid-template-columns: 7rem 1fr; gap: .75rem;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 12px; padding: .85rem 1rem;
}
.timeline-item strong { color: var(--brand-dark); }
.quiet-link { font-size: .88rem; color: #9eb0a5; }
.quiet-link a { color: #b8c9bc; text-decoration: underline; text-underline-offset: 2px; }
.crew-split { display: grid; gap: 1rem; margin-top: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.how-proxy .card h3 { color: var(--brand-dark); }
@media (max-width: 720px) {
  .timeline-item { grid-template-columns: 1fr; }
}
