/* ============================================================
   Afanasenka Handyman Services — Stylesheet
   Workshop red. Brutalist. Honest, hard-working.
   ============================================================ */
/* Google Fonts (Anton, Barlow Condensed, Barlow, JetBrains Mono)
   are loaded via <link> in each HTML <head> to avoid the chained
   @import → fonts.googleapis.com waterfall and improve LCP. */

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

:root {
  /* Brand red */
  --red-50:  #fff1f2;
  --red-100: #ffd9dc;
  --red-300: #ff7a86;
  --red-500: #d6182a;
  --red-600: #b80f20;
  --red-700: #930a18;

  --brand:        #d6182a;
  --brand-hover:  #b80f20;
  --brand-press:  #930a18;

  /* Warm neutrals */
  --paper:    #fbf7f2;
  --paper-2:  #f3ede4;
  --paper-3:  #e6ddcf;
  --bone:     #ffffff;
  --ink-900:  #0f0d0c;
  --ink-800:  #1c1917;
  --ink-700:  #2a2624;
  --ink-600:  #44403c;
  --ink-500:  #6b6660;
  --ink-400:  #918a82;
  --ink-300:  #c2bbb1;
  --ink-200:  #ddd6cb;
  --ink-100:  #ece6dc;

  --steel:    #2b3138;
  --tape:     #f3c04a;
  --pine:     #2f6b3a;

  /* Type families */
  --font-display:   'Anton', 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
  --font-condensed: 'Barlow Condensed', 'Oswald', 'Roboto Condensed', sans-serif;
  --font-body:      'Barlow', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:      'JetBrains Mono', 'Menlo', 'Consolas', monospace;

  /* Radii */
  --r-2: 4px;
  --r-3: 6px;
  --r-4: 10px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-1: 0 1px 0 rgba(15, 13, 12, 0.06), 0 1px 2px rgba(15, 13, 12, 0.06);
  --shadow-2: 0 1px 0 rgba(15, 13, 12, 0.08), 0 4px 14px rgba(15, 13, 12, 0.08);
  --shadow-stamp: 3px 3px 0 var(--ink-900);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 120ms;
  --dur-base: 220ms;

  --max-w: 1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

/* ── Skip-to-content link (a11y) ──────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 2000;
  padding: 12px 18px;
  background: var(--ink-900);
  color: #fff;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--brand);
  border-radius: 6px;
  box-shadow: 3px 3px 0 var(--brand);
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus {
  top: 12px;
  outline: none;
  color: #fff;
}

/* ── Global focus-visible (a11y for keyboard users) ───────── */
:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 2px;
}
.btn:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── Typography defaults ───────────────────────────────────── */
h1, h2, h3, h4 { margin: 0; }
h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--ink-900);
}
h3, h4 {
  font-family: var(--font-condensed);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

a { color: var(--brand); transition: color var(--dur-fast) var(--ease-out); }
a:hover { color: var(--brand-hover); }

::selection { background: var(--brand); color: var(--bone); }

/* ── Utilities ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

.section { padding: 80px 0; }

/* Section headers — eyebrow + display headline + black rule */
.section-header { margin-bottom: 36px; max-width: 720px; }
.section-label {
  display: inline-block;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}
.section-label::before { content: "★ "; }
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin: 0 0 12px 0;
}
.section-header::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--ink-900);
  margin-top: 12px;
}
.section-sub {
  font-size: 17px;
  color: var(--ink-700);
  max-width: 620px;
  line-height: 1.55;
  margin-top: 16px;
}

/* ── Buttons (brutalist stamp shadow) ──────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: 6px;
  border: 2px solid var(--ink-900);
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow-stamp);
  transition: transform 120ms var(--ease-out), box-shadow 120ms var(--ease-out), background 120ms var(--ease-out);
}
.btn:hover {
  background: var(--brand-hover);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink-900);
  color: #fff;
}
.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink-900);
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-hover); color: #fff; }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}
.btn-outline:hover {
  background: #fff;
  color: var(--ink-900);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}
.btn-secondary-outline {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--ink-900);
  box-shadow: var(--shadow-stamp);
}
.btn-secondary-outline:hover {
  background: var(--ink-900);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  box-shadow: none;
}
.btn-ghost:hover {
  background: var(--ink-900);
  color: #fff;
  box-shadow: none;
  transform: none;
}
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-full { width: 100%; }

/* ── NAV ───────────────────────────────────────────────────── */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--paper);
  border-bottom: 2px solid var(--ink-900);
  transition: box-shadow var(--dur-base);
}
.nav-wrapper.scrolled { box-shadow: 0 2px 18px rgba(15, 13, 12, 0.08); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 28px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo .mark {
  width: 48px;
  height: 48px;
  background: var(--brand);
  border: 2px solid var(--ink-900);
  border-radius: 8px;
  box-shadow: 3px 3px 0 var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}
.nav-logo .lockup {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .lockup .name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.01em;
  color: var(--ink-900);
  text-transform: uppercase;
  line-height: 1;
}
.nav-logo .lockup .sub {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--brand);
  margin-top: 5px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  flex-shrink: 0;
}
.nav-links a {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-900);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-links a:hover { color: var(--brand); }
.nav-cta {
  color: #fff !important;
  background: var(--brand);
  border: 2px solid var(--ink-900);
  border-radius: 6px;
  padding: 10px 18px;
  box-shadow: 3px 3px 0 var(--ink-900);
}
.nav-cta:hover {
  color: #fff !important;
  background: var(--brand-hover);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink-900);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink-900);
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  background: var(--brand);
  color: #fff;
  padding-top: 88px;
  border-bottom: 2px solid var(--ink-900);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 72px 32px 80px;
}
.hero-content { max-width: 640px; }
.hero-eyebrow {
  display: block;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7.5vw, 112px);
  line-height: 0.9;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 24px 0;
}
.hero-title .strike {
  display: inline-block;
  position: relative;
}
.hero-title .strike .bar {
  position: absolute;
  left: -3%; right: -3%; top: 50%;
  height: 10px;
  background: var(--ink-900);
  transform: translateY(-50%) rotate(-2deg);
  pointer-events: none;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.5;
  color: #fff;
  opacity: 0.92;
  max-width: 480px;
  margin: 0 0 28px 0;
  font-weight: 500;
}
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-actions .btn-primary {
  background: var(--ink-900);
  border-color: var(--ink-900);
}
.hero-actions .btn-primary:hover { background: #000; }
.hero-actions .btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
  box-shadow: 3px 3px 0 var(--ink-900);
}
.hero-actions .btn-outline:hover {
  background: #fff;
  color: var(--ink-900);
}
.hero-trust-bar {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.92;
}
.hero-trust-item::before {
  content: "★ ";
  color: #fff;
  margin-right: 4px;
}
.hero-trust-divider { display: none; }

.hero-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  display: block;
  border: 0;
  outline: 0;
  box-shadow: none;
  filter: none;
  -webkit-filter: none;
  background: transparent;
}

/* ── SERVICES ──────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.service-card {
  position: relative;
  background: var(--bone);
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-1);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.service-card.featured-service {
  border: 2px solid var(--ink-900);
  box-shadow: 4px 4px 0 var(--ink-900);
}
.featured-badge {
  position: absolute;
  top: -14px;
  left: 20px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 2px solid var(--ink-900);
  border-radius: 4px;
  box-shadow: 2px 2px 0 var(--ink-900);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--ink-900);
  border-radius: 6px;
  box-shadow: 2px 2px 0 var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.service-card h3 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin: 0;
}
.service-card p {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.5;
  margin: 0 0 4px 0;
}
.service-list {
  list-style: none;
  margin: 8px 0 0 0;
  padding: 12px 0 0 0;
  border-top: 1px solid var(--ink-200);
}
.service-list li {
  font-size: 14px;
  color: var(--ink-800);
  padding: 4px 0;
  font-family: var(--font-body);
}
.service-list li::before {
  content: "★ ";
  color: var(--brand);
  font-weight: 700;
}

/* ── WHY US ────────────────────────────────────────────────── */
.why-us {
  background: var(--paper-2);
  border-top: 2px solid var(--ink-900);
  border-bottom: 2px solid var(--ink-900);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.why-text .section-title { text-align: left; }
.why-desc {
  color: var(--ink-700);
  margin-bottom: 32px;
  font-size: 17px;
  line-height: 1.55;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--ink-900);
  box-shadow: 2px 2px 0 var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.why-feature strong {
  display: block;
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin-bottom: 4px;
}
.why-feature p {
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.why-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.why-stat-card {
  background: var(--bone);
  border: 2px solid var(--ink-900);
  border-radius: 6px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  box-shadow: 3px 3px 0 var(--ink-900);
}
.why-stat-highlight {
  background: var(--brand);
  color: #fff;
}
.why-stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: var(--ink-900);
}
.why-stat-highlight .why-stat-num { color: #fff; }
.why-stat-label {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}
.why-stat-highlight .why-stat-label { color: #fff; opacity: 0.9; }
.why-cta-card {
  background: var(--bone);
  border: 2px solid var(--ink-900);
  border-radius: 6px;
  padding: 24px;
  box-shadow: 4px 4px 0 var(--brand);
}
.why-cta-card p {
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 14px 0;
  color: var(--ink-900);
  font-style: normal;
}
.why-cta-name {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-700);
}
.why-cta-stars {
  color: var(--brand);
  font-size: 18px;
  margin-top: 8px;
  letter-spacing: 0.1em;
}

/* ── PRICING ───────────────────────────────────────────────── */
.pricing-simple { margin-bottom: 32px; }

.pricing-rate-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background: var(--ink-900);
  color: #fff;
  border: 2px solid var(--ink-900);
  border-radius: 8px;
  padding: 40px 44px;
  box-shadow: 8px 8px 0 var(--brand);
}
.pricing-rate-left { display: flex; flex-direction: column; gap: 8px; }
.pricing-rate-amount {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  line-height: 1;
  flex-wrap: wrap;
  font-family: var(--font-display);
}
.price-prefix {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  align-self: flex-end;
  margin-bottom: 14px;
  white-space: nowrap;
}
.price-currency {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--brand);
  margin-bottom: 8px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 96px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.005em;
}
.price-period {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.pricing-rate-min {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}
.pricing-rate-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 360px;
}
.pricing-rate-right p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.pricing-cta-block {
  text-align: center;
  background: var(--paper-2);
  border: 2px solid var(--ink-900);
  border-radius: 8px;
  padding: 32px 40px;
  margin-bottom: 36px;
  box-shadow: 4px 4px 0 var(--brand);
}
.pricing-cta-block p {
  font-size: 17px;
  color: var(--ink-900);
  line-height: 1.55;
  margin-bottom: 12px;
}
.pricing-phone-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--dur-fast) var(--ease-out);
  text-transform: uppercase;
}
.pricing-phone-link:hover { color: var(--ink-900); }

.quick-prices {
  background: var(--bone);
  border: 2px solid var(--ink-900);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 4px 4px 0 var(--ink-900);
}
.quick-prices h3 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink-900);
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 8px;
}
.quick-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: 4px;
  font-size: 15px;
  font-family: var(--font-body);
}
.price-tag {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--brand);
  letter-spacing: 0.01em;
}

/* ── SERVICE AREA STRIP ────────────────────────────────────── */
.service-area {
  background: var(--brand);
  border-top: 2px solid var(--ink-900);
  border-bottom: 2px solid var(--ink-900);
  padding: 48px 0;
}
.area-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.area-text { flex: 0 0 320px; }
.area-text h2 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 0.95;
  margin-bottom: 8px;
}
.area-text p {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}
.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}
.area-cities span {
  background: var(--ink-900);
  color: #fff;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 2px solid var(--ink-900);
  border-radius: 4px;
}

.area-city-link {
  display: inline-block;
  background: #fff;
  color: var(--ink-900);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 2px solid var(--ink-900);
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 2px 2px 0 var(--ink-900);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.area-city-link:hover {
  background: var(--ink-900);
  color: #fff;
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--ink-900);
}

/* ── CITIES SECTION (homepage) ─────────────────────────────── */
.cities-section {
  background: var(--paper-2);
  border-top: 2px solid var(--ink-900);
  border-bottom: 2px solid var(--ink-900);
}
.cities-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.cities-col-title {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 13px;
  color: var(--ink-900);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ink-900);
  display: inline-block;
}
.cities-list {
  list-style: none;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cities-list a {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-900);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.cities-list a:hover { color: var(--brand); }
.cities-list a::before {
  content: '★ ';
  color: var(--brand);
}
.cities-keyword-block {
  background: var(--bone);
  border: 2px solid var(--ink-900);
  border-radius: 6px;
  padding: 24px 28px;
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.65;
  box-shadow: 3px 3px 0 var(--ink-900);
}
.cities-keyword-block strong { color: var(--ink-900); }

/* ── CONTACT ───────────────────────────────────────────────── */
.contact-section { background: var(--paper); }

.contact-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}
.contact-methods-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bone);
  padding: 18px 22px;
  border: 2px solid var(--ink-900);
  border-radius: 6px;
  text-decoration: none;
  color: var(--ink-900);
  box-shadow: 3px 3px 0 var(--ink-900);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.contact-method:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink-900);
  color: var(--ink-900);
}
.method-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-method strong {
  display: block;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 2px;
}
.contact-method span {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-900);
  font-weight: 600;
}

.cta-banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: var(--ink-900);
  color: #fff;
  border: 2px solid var(--ink-900);
  border-radius: 6px;
  padding: 24px;
  min-width: 280px;
  box-shadow: 4px 4px 0 var(--brand);
}
.cta-banner p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}
.cta-banner strong { color: #fff; }
.cta-banner .btn {
  background: var(--brand);
  color: #fff;
  border-color: #fff;
  box-shadow: 3px 3px 0 #fff;
}
.cta-banner .btn:hover {
  background: var(--brand-hover);
  box-shadow: 4px 4px 0 #fff;
}

/* Estimate block */
.estimate-wrap {
  background: var(--bone);
  border: 2px solid var(--ink-900);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--ink-900);
}
.estimate-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 40px;
}
.estimate-text .section-label::before { content: "★ "; }
.estimate-text .section-title {
  text-align: left;
  margin-bottom: 12px;
}
.estimate-desc {
  font-size: 17px;
  color: var(--ink-700);
  line-height: 1.65;
  margin-top: 8px;
}
.estimate-phone-link {
  font-family: var(--font-display);
  color: var(--brand);
  font-size: 24px;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-transform: uppercase;
}
.estimate-phone-link:hover { color: var(--ink-900); }
.estimate-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 290px;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--ink-900);
  color: #d8d3cc;
  padding: 64px 0 24px;
  border-top: 4px solid var(--brand);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
}
.footer-brand p {
  font-family: var(--font-body);
  font-size: 14px;
  color: #c2bbb1;
  margin-top: 16px;
  line-height: 1.6;
  max-width: 280px;
}
.footer-logo-wrap {
  display: inline-block;
  background: var(--paper);
  padding: 12px;
  border-radius: 6px;
  border: 2px solid #fff;
  box-shadow: 3px 3px 0 var(--brand);
}
.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.footer-col h4 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px 0;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 14px;
}
.footer-col ul li a,
.footer-col ul li {
  color: #d8d3cc;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #2a2624;
  padding: 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #918a82;
  text-transform: uppercase;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: #918a82; text-decoration: none; }
.footer-links a:hover { color: #fff; }

/* ── STICKY MOBILE CTA ─────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: var(--paper);
  border-top: 2px solid var(--ink-900);
  box-shadow: 0 -4px 20px rgba(15, 13, 12, 0.12);
}

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-section {
  background: var(--paper);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.t-card {
  background: var(--bone);
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-1);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.t-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}
.t-stars {
  color: var(--brand);
  font-size: 17px;
  letter-spacing: 0.16em;
  line-height: 1;
}
.t-quote {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-900);
  line-height: 1.55;
  flex: 1;
  margin: 0;
}
.t-name {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-700);
  padding-top: 12px;
  border-top: 1px solid var(--ink-200);
}
.testimonials-cta {
  text-align: center;
  padding-top: 16px;
}

/* ── LOCATION PAGE — HERO ──────────────────────────────────── */
.lp-hero {
  background: var(--brand);
  color: #fff;
  padding: 152px 0 80px;
  border-bottom: 2px solid var(--ink-900);
  position: relative;
  overflow: hidden;
}
.lp-hero .container { text-align: left; }
.lp-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.9;
  margin: 0 0 18px 0;
}
.lp-hero-eyebrow::before { content: "★ "; }
.lp-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 24px 0;
  max-width: 880px;
}
.lp-hero-sub {
  font-family: var(--font-body);
  font-size: 19px;
  color: #fff;
  opacity: 0.92;
  margin: 0 0 28px 0;
  max-width: 620px;
  line-height: 1.5;
  font-weight: 500;
}
.lp-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.lp-hero-actions .btn-primary {
  background: var(--ink-900);
  border-color: var(--ink-900);
}
.lp-hero-actions .btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.lp-hero-actions .btn-outline:hover {
  background: #fff;
  color: var(--ink-900);
}

/* ── LOCATION PAGE — CONTENT ───────────────────────────────── */
.lp-content-section { background: var(--paper); }
.lp-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.lp-body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink-900);
}
.lp-body h2:first-child { margin-top: 0; }
.lp-body p {
  font-family: var(--font-body);
  color: var(--ink-800);
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 16px;
}
.lp-body ul {
  margin: 8px 0 16px 0;
  padding: 0;
  list-style: none;
  color: var(--ink-800);
  font-size: 16px;
}
.lp-body ul li {
  margin-bottom: 6px;
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
}
.lp-body ul li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-size: 14px;
  top: 4px;
}

/* Sidebar CTA card */
.lp-sidebar-card {
  background: var(--ink-900);
  border: 2px solid var(--ink-900);
  border-radius: 8px;
  padding: 28px;
  color: #fff;
  position: sticky;
  top: 110px;
  box-shadow: 5px 5px 0 var(--brand);
}
.lp-sidebar-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
  line-height: 0.95;
}
.lp-sidebar-card p {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
  line-height: 1.55;
}
.lp-sidebar-card .btn { width: 100%; margin-bottom: 10px; }
.lp-sidebar-card .btn:last-child { margin-bottom: 0; }
.lp-sidebar-card .btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
  box-shadow: 3px 3px 0 var(--brand);
}
.lp-sidebar-card .btn-outline:hover {
  background: #fff;
  color: var(--ink-900);
}

.lp-services-list {
  margin: 18px 0 0;
  padding: 18px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.lp-services-list li {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lp-services-list li::before {
  content: '★ ';
  color: var(--brand);
}

/* ── LOCATION PAGE — CITY LINKS ────────────────────────────── */
.lp-cities-section {
  background: var(--paper-2);
  border-top: 2px solid var(--ink-900);
  border-bottom: 2px solid var(--ink-900);
}
.lp-city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.lp-city-link {
  display: inline-block;
  padding: 10px 16px;
  background: var(--bone);
  border: 2px solid var(--ink-900);
  border-radius: 6px;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-900);
  text-decoration: none;
  box-shadow: 2px 2px 0 var(--ink-900);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast);
}
.lp-city-link:hover {
  background: var(--ink-900);
  color: #fff;
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--ink-900);
}
.lp-city-link.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--ink-900);
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-visual { order: -1; }
  .contact-top { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .area-inner { flex-direction: column; align-items: flex-start; }
  .estimate-body { grid-template-columns: 1fr; padding: 32px; }
  .estimate-actions { min-width: auto; }
  .lp-content-grid { grid-template-columns: 1fr; }
  .lp-sidebar-card { position: static; }
  .cities-columns { grid-template-columns: 1fr; gap: 32px; }
  .pricing-rate-card { padding: 32px 28px; }
  .price-amount { font-size: 72px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 88px 0 0;
    background: var(--paper);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform var(--dur-base) var(--ease-out);
    z-index: 999;
    border-top: 2px solid var(--ink-900);
  }
  .nav-links a { color: var(--ink-900) !important; font-size: 18px; }
  .nav-links.open { transform: translateX(0); }
  .hamburger { display: flex; }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 48px 24px 56px;
    gap: 36px;
  }
  .hero-content { max-width: 100%; }
  .hero-photo { order: -1; }
  .hero-photo img { max-width: 100%; max-height: 360px; }

  .section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; }
  .sticky-cta { display: block; }
  body { padding-bottom: 72px; }
  .nav-logo .lockup .name { font-size: 22px; }
  .pricing-rate-card { flex-direction: column; align-items: flex-start; }
  .price-amount { font-size: 64px; }
  .lp-hero { padding: 128px 0 56px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-trust-bar { gap: 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .price-amount { font-size: 56px; }
  .pricing-phone-link { font-size: 28px; }
  .lp-hero-actions .btn { width: 100%; }
}
