:root {
  --paper: #f4efe6;
  --paper-deep: #ebe4d6;
  --ink: #1c1410;
  --ink-soft: #5c4f44;
  --ink-faint: #8a7b6c;
  --rust: #c45c26;
  --rust-deep: #9a4318;
  --rust-soft: #f3ddd0;
  --highway: #f0c419;
  --highway-ink: #1c1410;
  --charcoal: #2a221c;
  --night: #171210;
  --line: #d9cfbf;
  --max: 1120px;
  --display: "Archivo Black", "Arial Black", Impact, sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 4.5rem;
}
@media (min-width: 900px) {
  body { padding-bottom: 0; }
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(100% - 2rem, var(--max)); margin-inline: auto; }


@media (max-width: 899px) {
  
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 239, 230, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--ink);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}
.logo {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.logo em { font-style: normal; color: var(--rust); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.phone-link {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.phone-link:hover { color: var(--rust); }
.phone-link--desktop { display: none; }
@media (min-width: 640px) {
  .phone-link--desktop { display: inline; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1;
  padding: 0.75rem 1.1rem;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.1s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--rust);
  color: #fff;
  border-color: var(--rust-deep);
}
.btn-primary:hover { background: var(--rust-deep); }
.btn-highway {
  background: var(--highway);
  color: var(--highway-ink);
  border-color: var(--ink);
}
.btn-highway:hover { filter: brightness(1.05); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--paper-deep); }
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); }
.btn-lg { padding: 0.95rem 1.35rem; font-size: 0.95rem; }

.nav-desktop {
  display: none;
  gap: 1.35rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.nav-desktop a:hover { color: var(--rust); }
.nav-desktop a[aria-current="page"] { color: var(--rust); }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid var(--ink);
  background: var(--paper);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-mobile {
  display: none;
  border-top: 2px solid var(--ink);
  background: var(--paper);
  padding: 0.85rem 0 1.1rem;
}
.nav-mobile.is-open { display: block; }
.nav-mobile a {
  display: block;
  padding: 0.7rem 0;
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 1px solid var(--line);
}
.nav-mobile a:last-child { border-bottom: 0; }
.nav-mobile a[aria-current="page"] { color: var(--rust); }

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile,
  .nav-mobile.is-open { display: none !important; }
}

/* Hero */
.hero {
  padding: 3rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 55%;
  height: 100%;
  background:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 28px,
      rgba(196, 92, 38, 0.06) 28px,
      rgba(196, 92, 38, 0.06) 30px
    );
  pointer-events: none;
}
.hero-board {
  position: relative;
  background: var(--night);
  color: var(--paper);
  padding: 2rem 1.35rem 2.15rem;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--highway);
}
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highway);
  margin-bottom: 0.85rem;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 6.5vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  max-width: 14ch;
}
.hero h1 .rust { color: var(--rust); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #cbbba8;
  max-width: 36ch;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}
.trust-chip {
  font-size: 0.8rem;
  color: #a89886;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  align-items: center;
}
.trust-chip strong { color: var(--highway); font-weight: 700; }

.hero-board { padding-bottom: 3rem; }

.page-hero {
  padding: 2.5rem 0 2rem;
}
.page-hero .hero-board {
  box-shadow: 6px 6px 0 var(--highway);
  padding-bottom: 2rem;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 18ch;
  margin-bottom: 0.65rem;
}
.page-hero h1 .rust { color: var(--rust); }
.page-hero .hero-sub { margin-bottom: 0; }

/* Sections */
section { padding: 3.75rem 0; }
.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}
.section-lead {
  color: var(--ink-soft);
  max-width: 40ch;
  margin-bottom: 1.85rem;
  font-weight: 500;
}

/* Services */
.services {
  background: var(--paper-deep);
  border-block: 2px solid var(--ink);
}
.service-grid { display: grid; gap: 1rem; }
.service-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 1.4rem 1.25rem 1.5rem;
  position: relative;
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--rust);
}
.service-card:nth-child(2)::after { background: var(--highway); }
.service-card:nth-child(3)::after { background: var(--charcoal); }
.service-num {
  font-family: var(--display);
  font-size: 1.75rem;
  color: var(--rust);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.service-card:nth-child(2) .service-num { color: #b8960a; }
.service-card:nth-child(3) .service-num { color: var(--charcoal); }
.service-card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.service-card p {
  font-size: 0.925rem;
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
}
.service-card ul {
  list-style: none;
  font-size: 0.85rem;
  font-weight: 500;
}
.service-card li {
  padding: 0.3rem 0;
  border-top: 1px solid var(--line);
}
.secondary-services {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.sec-pill {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 2px dashed var(--ink-faint);
  padding: 0.45rem 0.85rem;
  color: var(--ink-soft);
}

/* Expanded pillars (services page) */
.pillar {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 1.5rem 1.25rem;
}
.pillar-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.pillar .num {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--rust);
  line-height: 1;
}
.pillar:nth-child(2) .num { color: #b8960a; }
.pillar:nth-child(3) .num { color: var(--charcoal); }
.pillar h2 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}
.pillar .lede {
  color: var(--ink-soft);
  font-weight: 500;
  max-width: 48ch;
}
.pillar-body {
  display: grid;
  gap: 1rem;
}
.pillar-body h3 {
  font-family: var(--display);
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.pillar-body ul {
  list-style: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.pillar-body li {
  padding: 0.35rem 0;
  border-top: 1px solid var(--line);
  padding-left: 0.85rem;
  position: relative;
}
.pillar-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--highway);
  border: 1px solid var(--ink);
}
@media (min-width: 700px) {
  .pillar-body { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

/* Process */
.process-rail { display: grid; gap: 0.75rem; }
.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 1.15rem 1.2rem;
}
.process-step .num {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--rust);
  line-height: 1;
  min-width: 2ch;
}
.process-step h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.process-step p { font-size: 0.875rem; color: var(--ink-soft); }

/* Proof */
.proof {
  background: var(--night);
  color: var(--paper);
  border-block: 3px solid var(--ink);
}
.proof .section-label { color: var(--highway); }
.proof .section-title { color: #fff; }
.proof .section-lead { color: #a89886; }
.proof-grid { display: grid; gap: 0.75rem; }
.proof-card {
  background: var(--charcoal);
  border: 2px solid #3d3228;
  padding: 1.2rem 1.15rem;
  min-width: 0;
}
.proof-card .place {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highway);
  margin-bottom: 0.35rem;
}
.proof-card h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  color: #fff;
  word-break: break-word;
}
.proof-card p { font-size: 0.85rem; color: #a89886; }
.webby-note {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border: 2px solid var(--highway);
  background: rgba(240, 196, 25, 0.08);
  font-size: 0.9rem;
  color: #d4c4b0;
}
.webby-note strong { color: var(--highway); }
.notice {
  margin: 0 0 1.5rem;
  padding: 0.9rem 1rem;
  border: 2px solid var(--highway);
  background: rgba(240, 196, 25, 0.12);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
.proof .notice {
  color: #f4efe6;
  background: rgba(240, 196, 25, 0.1);
}

/* Monthly */
.get-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.get-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}
.get-list .mark {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  background: var(--highway);
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 0.05rem;
}

/* Tools strip (demoted) */
.tools {
  padding: 1.75rem 0;
  border-top: 2px solid var(--line);
  background: var(--paper-deep);
}
.tools-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.25rem;
  font-size: 0.8rem;
  color: var(--ink-faint);
  font-weight: 500;
}
.tools-inner .label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.7rem;
  color: var(--ink-soft);
}

/* Contact / audit */
.contact {
  background: var(--rust);
  color: #fff;
  padding: 3.75rem 0;
  border-top: 3px solid var(--ink);
}
.contact .section-label { color: var(--highway); }
.contact .section-title { color: #fff; }
.contact .section-lead { color: rgba(255,255,255,0.82); }
.contact-grid { display: grid; gap: 2rem; }
.audit-form { display: grid; gap: 0.85rem; }
.audit-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.audit-form input,
.audit-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.9rem 1rem;
  border: 2px solid var(--ink);
  background: #fff;
  color: var(--ink);
  font-weight: 500;
  width: 100%;
}
.audit-form textarea { min-height: 7rem; resize: vertical; }
.audit-form input:focus,
.audit-form textarea:focus {
  outline: 3px solid var(--highway);
  outline-offset: 1px;
}
.audit-form .btn { width: 100%; margin-top: 0.2rem; }
.contact-aside p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.85rem;
  font-weight: 500;
}
.contact-aside a {
  display: block;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.35rem;
}
.contact-aside a.phone {
  font-size: 1.35rem;
  color: var(--highway);
}
.contact-aside a:hover { text-decoration: underline; }

/* Contact page layout */
.contact-page {
  padding: 2.5rem 0 3.75rem;
}
.contact-page-grid {
  display: grid;
  gap: 2rem;
}
.contact-panel {
  background: var(--rust);
  color: #fff;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--highway);
  padding: 1.75rem 1.35rem;
}
.contact-panel .section-label { color: var(--highway); }
.contact-panel .section-title { color: #fff; font-size: clamp(1.4rem, 3vw, 1.85rem); }
.contact-panel .section-lead { color: rgba(255,255,255,0.85); margin-bottom: 1.25rem; }
.contact-info-panel {
  background: var(--night);
  color: var(--paper);
  border: 3px solid var(--ink);
  padding: 1.75rem 1.35rem;
}
.contact-info-panel h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.contact-info-panel p {
  color: #a89886;
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
  font-weight: 500;
}
.contact-info-panel a {
  display: block;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.contact-info-panel a.phone {
  color: var(--highway);
  font-size: 1.35rem;
}
.map-placeholder {
  margin-top: 1.25rem;
  border: 2px dashed #5c4f44;
  background:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 14px,
      rgba(240, 196, 25, 0.06) 14px,
      rgba(240, 196, 25, 0.06) 16px
    ),
    var(--charcoal);
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  color: #a89886;
  font-size: 0.85rem;
  font-weight: 600;
}
.map-placeholder strong {
  display: block;
  font-family: var(--display);
  color: var(--highway);
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  background: var(--night);
  color: #8a7b6c;
  font-size: 0.8rem;
  border-top: 3px solid var(--highway);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-brand {
  font-family: var(--display);
  color: var(--paper);
  text-transform: uppercase;
  font-size: 0.85rem;
}
.footer-inner a:hover { color: var(--highway); }

/* Mobile dock: Call | Audit */
.mobile-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--ink);
  background: var(--night);
}
.mobile-dock a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 0.75rem;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mobile-dock a:first-child {
  color: #fff;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.mobile-dock a:last-child {
  background: var(--highway);
  color: var(--highway-ink);
}
@media (min-width: 900px) {
  .mobile-dock { display: none; }
}

@media (min-width: 640px) {
  .hero-board { padding: 2.5rem 2.25rem 2.6rem; }
  .hero-board { padding-bottom: 3.25rem; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .process-rail { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
  .contact-page-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 900px) {
  .hero { padding: 4rem 0 4.5rem; }
  .process-rail { grid-template-columns: repeat(4, 1fr); }
  .proof-grid { grid-template-columns: repeat(4, 1fr); }
}
