/* LAC Solutions — homepage. Same "job ticket" system as /book. */

:root {
  --ink: #201c16;
  --ink-soft: #46403a;
  --muted: #7a7266;
  --paper: #ede9e1;
  --paper-raised: #f7f5f0;
  --line: #d6cfc2;
  --accent: #b5651d;
  --accent-strong: #8a4914;
  --accent-soft: #f1dfc8;
  --accent-on: #fcf6ec;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 2px rgba(32, 28, 22, 0.06), 0 12px 28px -14px rgba(32, 28, 22, 0.24);

  --font-display: -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Mono", "Roboto Mono", Consolas, monospace;
}

/* Always light — no dark-mode variant, by request. */

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    repeating-linear-gradient(
      178deg,
      color-mix(in srgb, var(--accent) 3%, transparent) 0px,
      transparent 2px,
      transparent 26px
    ),
    var(--paper);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.wrap { max-width: 900px; margin: 0 auto; padding: 0 20px; }

/* ---------- Top bar ---------- */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 12px;
  flex-wrap: wrap;
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}
.brand-mark span { color: var(--accent); }

.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-on);
  text-decoration: none;
  white-space: nowrap;
}
.topbar-cta:hover { background: var(--accent-strong); }

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

.hero {
  padding: 48px 0 40px;
  text-align: center;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 22px;
}
.badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: 999px;
  padding: 4px 10px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  text-wrap: balance;
}
.hero h1 em { color: var(--accent); font-style: normal; }

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 46ch;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
}
.btn-primary { background: var(--accent); color: var(--accent-on); }
.btn-primary:hover { background: var(--accent-strong); }
.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--muted); }

/* ---------- Sections ---------- */

section.block { padding: 40px 0; border-top: 1px solid var(--line); }

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin: 0 0 8px;
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  margin: 0 0 32px;
  text-wrap: balance;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 620px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.service-card h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 1.15rem; }
.service-card p { margin: 0 0 16px; color: var(--muted); font-size: 0.92rem; line-height: 1.55; }
.service-card a { font-weight: 700; color: var(--accent-strong); text-decoration: none; font-size: 0.88rem; }
.service-card a:hover { text-decoration: underline; }

/* Trust points */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 760px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .trust-grid { grid-template-columns: 1fr; } }

.trust-item { text-align: center; }
.trust-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-strong);
  display: block;
  margin-bottom: 6px;
}
.trust-item h4 { margin: 0 0 4px; font-size: 0.98rem; }
.trust-item p { margin: 0; color: var(--muted); font-size: 0.85rem; line-height: 1.5; }

/* Area */
.area-block { text-align: center; }
.area-block p { color: var(--muted); max-width: 52ch; margin: 0 auto; line-height: 1.6; }

/* CTA band */
.cta-band {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px 24px;
  text-align: center;
}
.cta-band h2 { font-family: var(--font-display); font-size: 1.4rem; margin: 0 0 10px; }
.cta-band p { color: var(--muted); margin: 0 0 22px; }

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}
footer a { font-weight: 700; color: var(--accent-strong); text-decoration: none; }
footer .foot-badges { margin-top: 12px; display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
