/* Local Web — minimal agency site
   Near-white / near-black / deep navy accent.
   Calm, honest, professional. No amber, no AI-slop chrome. */

:root {
  --bg: #fafafa;
  --bg-soft: #f3f3f2;
  --text: #141414;
  --text-muted: #5c5c5c;
  --text-dim: #8a8a8a;
  --border: #e4e4e2;
  --accent: #1e3a5f;
  --accent-hover: #152a45;
  --radius: 2px;
  --font: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;
  --wrap: min(42rem, calc(100% - 2.5rem));
  --wrap-wide: min(56rem, calc(100% - 2.5rem));
  --header-h: 3.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

h1, h2, h3 {
  font-family: var(--font);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 0.85rem;
}

h1 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.45rem);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

p {
  margin: 0 0 1rem;
}

ul, ol {
  margin: 0;
  padding: 0;
}

.wrap {
  width: var(--wrap-wide);
  margin-inline: auto;
}

.wrap.narrow {
  width: var(--wrap);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  width: var(--wrap-wide);
}

.logo {
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  color: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.nav-phone {
  color: var(--accent) !important;
  font-weight: 600 !important;
}

.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 1.5px;
  background: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-text {
  background: transparent;
  color: var(--text-muted);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.btn-text:hover {
  color: var(--text);
}

/* Hero */
.hero {
  padding: 5.5rem 0 4rem;
}

.lede {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

/* Sections */
.section {
  padding: 3.25rem 0;
}

.section-rule {
  border-top: 1px solid var(--border);
}

.intro {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

/* Plain offer list — not a card grid */
.plain-list {
  list-style: none;
  display: grid;
  gap: 1.35rem;
}

.plain-list li {
  color: var(--text-muted);
  padding-left: 0;
  font-size: 1.02rem;
}

.plain-list strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

/* Steps — numbered, not cards */
.steps-plain {
  list-style: none;
  display: grid;
  gap: 1.1rem;
  counter-reset: step;
}

.steps-plain li {
  counter-increment: step;
  color: var(--text-muted);
  padding-left: 2.25rem;
  position: relative;
  font-size: 1.02rem;
}

.steps-plain li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  width: 1.5rem;
}

.steps-plain strong {
  color: var(--text);
  font-weight: 600;
}

/* Pricing — two quiet columns */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.price {
  padding: 1.75rem 1.5rem;
  background: var(--bg);
}

.price + .price {
  border-left: 1px solid var(--border);
}

.price h3 {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0;
}

.amount {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 0.4rem;
  line-height: 1.1;
  color: var(--text);
}

.price-note {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin: 0 0 1.25rem;
}

.price ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.price li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-left: 0.9rem;
  position: relative;
}

.price li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--text-dim);
}

.pricing-contact {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin: 0;
}

.pricing-contact a {
  font-weight: 500;
}

.text-link {
  font-weight: 600;
}

/* About */
#about p {
  color: var(--text-muted);
  max-width: 36rem;
}

/* Contact */
.section-contact {
  border-top: 1px solid var(--border);
  padding-bottom: 4rem;
}

.contact-lines {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.7;
  margin: 0;
}

.contact-lines a {
  color: var(--accent);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0 2rem;
  background: var(--bg);
}

.footer-inner p {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.footer-inner strong {
  color: var(--text);
  font-weight: 600;
}

.footer-fine {
  font-size: 0.8rem !important;
}

/* Responsive */
@media (max-width: 640px) {
  :root {
    --wrap: calc(100% - 1.75rem);
    --wrap-wide: calc(100% - 1.75rem);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0.75rem 0.75rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.7rem 0.75rem;
  }

  .pricing {
    grid-template-columns: 1fr;
  }

  .price + .price {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .hero {
    padding: 3.5rem 0 2.75rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-contact {
    padding-bottom: 3rem;
  }
}
