:root {
  --bg: oklch(98% 0.004 235);
  --surface: oklch(100% 0 0);
  --surface-2: oklch(95% 0.012 220);
  --fg: oklch(20% 0.018 235);
  --muted: oklch(48% 0.02 235);
  --border: oklch(88% 0.01 235);
  --accent: oklch(54% 0.13 218);
  --accent-2: oklch(72% 0.13 82);
  --good: oklch(57% 0.14 150);
  --warn: oklch(72% 0.14 70);
  --danger: oklch(57% 0.16 25);
  --ink: oklch(17% 0.025 235);
  --font-display: "Avenir Next", "Söhne", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  --shadow: 0 18px 50px rgb(31 45 61 / 12%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklch, var(--surface) 88%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), oklch(46% 0.14 235));
  color: white;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand span { display: block; }
.brand-name { font: 800 16px/1 var(--font-display); letter-spacing: -0.01em; }
.brand-loc { color: var(--muted); font-size: 12px; margin-top: 4px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: var(--fg);
  background: var(--surface-2);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--accent);
  color: white;
  font-weight: 750;
  cursor: pointer;
}
.btn.secondary {
  background: var(--surface);
  color: var(--fg);
  border-color: var(--border);
}
.btn.gold { background: var(--accent-2); color: oklch(22% 0.03 80); }
.btn.full { width: 100%; }

.hero {
  min-height: 690px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(12 22 32 / 90%), rgb(12 22 32 / 62%) 44%, rgb(12 22 32 / 14%)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1800&q=82") center/cover;
  color: white;
}
.hero.compact {
  min-height: 440px;
  background:
    linear-gradient(90deg, rgb(12 22 32 / 90%), rgb(12 22 32 / 48%)),
    var(--hero-image, url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=82")) center/cover;
}
.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 98px 0 76px;
}
.eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 850;
  font-size: 12px;
}
h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h1 {
  max-width: 920px;
  margin: 16px 0 18px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.95;
}
h2 { font-size: clamp(32px, 4vw, 56px); line-height: 1; margin: 0 0 18px; }
h3 { font-size: 22px; line-height: 1.15; margin: 0 0 10px; }
.lead {
  max-width: 720px;
  font-size: clamp(18px, 2vw, 24px);
  color: color-mix(in oklch, currentColor 82%, transparent);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.section { padding: 82px 0; }
.section.tight { padding: 56px 0; }
.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}
.section-head p { max-width: 580px; color: var(--muted); margin: 0; }
.grid { display: grid; gap: 18px; }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.card.lift { box-shadow: var(--shadow); }
.card p { color: var(--muted); margin: 0; }
.service-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card .tag, .tag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in oklch, var(--accent) 10%, white);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
}
.photo-panel {
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--photo, url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1400&q=82")) center/cover;
  position: relative;
}
.photo-panel::after {
  content: "";
  position: absolute;
  inset: auto 24px 24px 24px;
  height: 130px;
  border-radius: 8px;
  background: linear-gradient(180deg, transparent, rgb(0 0 0 / 38%));
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.stat {
  padding: 18px;
  border: 1px solid var(--border);
  background: color-mix(in oklch, var(--surface) 88%, var(--accent) 4%);
  border-radius: 8px;
}
.stat strong { display: block; font-size: 28px; line-height: 1; font-variant-numeric: tabular-nums; }
.stat span { color: var(--muted); font-size: 13px; }

.band {
  background: var(--ink);
  color: white;
}
.band .card {
  background: rgb(255 255 255 / 7%);
  border-color: rgb(255 255 255 / 13%);
}
.band .muted, .band p { color: rgb(255 255 255 / 70%); }

.process {
  counter-reset: step;
}
.process .card { position: relative; padding-top: 58px; }
.process .card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 20px;
  left: 22px;
  color: var(--accent);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}
.check-list li {
  padding-left: 28px;
  position: relative;
  color: var(--muted);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: inset 0 0 0 4px color-mix(in oklch, var(--good) 25%, white);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.filter-btn {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--fg);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  cursor: pointer;
}
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: white; }
.gallery-tile {
  min-height: 280px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--img) center/cover;
  display: flex;
  align-items: end;
  padding: 18px;
  color: white;
  position: relative;
}
.gallery-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgb(0 0 0 / 72%));
}
.gallery-tile > * { position: relative; }

.form-card input, .form-card textarea, .form-card select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  background: white;
  color: var(--fg);
}
.form-card textarea { min-height: 132px; resize: vertical; }
.field { display: grid; gap: 7px; margin-bottom: 14px; }
.field label { font-weight: 750; font-size: 14px; }
.form-note { min-height: 22px; color: var(--good); font-weight: 700; }

.site-footer {
  background: oklch(15% 0.026 235);
  color: white;
  padding: 48px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
}
.site-footer a, .site-footer p { color: rgb(255 255 255 / 70%); }
.footer-list { display: grid; gap: 8px; }
.muted { color: var(--muted); }

.local-seo {
  background:
    linear-gradient(180deg, color-mix(in oklch, var(--surface) 88%, var(--accent) 4%), var(--bg));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.answer-card {
  min-height: 210px;
  border-color: color-mix(in oklch, var(--border) 72%, var(--accent) 28%);
}
.answer-card h3 {
  color: var(--ink);
}
.seo-links {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  font-size: 15px;
}
.seo-links span {
  display: inline-block;
  color: var(--fg);
  font-weight: 800;
  margin-right: 6px;
}
.seo-links a {
  color: var(--accent);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.faq-section {
  background: var(--surface);
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: color-mix(in oklch, var(--surface) 94%, var(--accent) 3%);
  overflow: hidden;
}
.faq-list summary {
  min-height: 56px;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 850;
  color: var(--fg);
}
.faq-list details[open] summary {
  border-bottom: 1px solid var(--border);
}
.faq-list p {
  margin: 0;
  padding: 16px 18px 18px;
  color: var(--muted);
}
.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.service-area-list span {
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

@media (max-width: 960px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
  }
  .nav-links {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-actions .btn.secondary { display: none; }
  .split, .grid.cols-2, .grid.cols-3, .grid.cols-4, .footer-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .photo-panel { min-height: 360px; }
}

@media (max-width: 560px) {
  .brand { min-width: auto; }
  .brand-loc { display: none; }
  .nav { min-height: 66px; width: min(100% - 22px, 1180px); }
  .nav-links { inset: 66px 11px auto 11px; }
  .hero, .hero.compact { min-height: 560px; }
  .hero-inner { padding: 72px 0 48px; }
  .stat-row { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .btn { width: 100%; }
}

.resource-hero, .article-hero {
  background:
    linear-gradient(90deg, rgb(12 22 32 / 88%), rgb(12 22 32 / 54%)),
    url("https://images.unsplash.com/photo-1562259949-e8e7689d7828?auto=format&fit=crop&w=1800&q=82") center/cover;
}
.resource-strip {
  background: color-mix(in oklch, var(--surface) 82%, var(--accent-2) 7%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.article-grid { align-items: stretch; }
.article-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: color-mix(in oklch, var(--accent) 34%, var(--border));
}
.article-card h3 { margin-bottom: 0; }
.article-card p { flex: 1; }
.article-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}
.article-content {
  display: grid;
  gap: 28px;
  max-width: 780px;
}
.article-section {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.article-section h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}
.article-section p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}
.article-aside {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 14px;
}
.resource-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 18px;
}
.resource-list a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 960px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
}

/* seo-expansion:start */
.seo-hero {
  background:
    linear-gradient(90deg, rgb(12 22 32 / 90%), rgb(12 22 32 / 55%)),
    url("https://images.unsplash.com/photo-1562259949-e8e7689d7828?auto=format&fit=crop&w=1800&q=82") center/cover;
}
.lead-card {
  display: grid;
  gap: 16px;
  align-self: stretch;
}
.seo-expansion-hub {
  background: color-mix(in oklch, var(--surface) 88%, var(--accent) 3%);
  border-top: 1px solid var(--border);
}
.intent-group {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}
.intent-group > h3 {
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.intent-group .article-card {
  min-height: 230px;
}
.service-area-list a.tag {
  border: 1px solid color-mix(in oklch, var(--accent) 28%, var(--border));
  background: color-mix(in oklch, var(--surface) 90%, var(--accent) 5%);
}
/* seo-expansion:end */
