
:root {
  --bg-main: #020617;
  --bg-alt: #020617;
  --bg-card: #020617;
  --border-subtle: #1f2937;
  --accent: #14b8a6;
  --accent-soft: #2dd4bf;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --container: 1120px;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #020617 100%);
  color: var(--text-main);
}

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

a:hover {
  text-decoration: underline;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: rgba(2,6,23,0.98);
  border-bottom: 1px solid #1f2937;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-soft);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f9fafb;
}

.brand-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

nav a {
  color: #e5e7eb;
}

nav a:hover {
  color: var(--accent);
}

.nav-phone {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.nav-phone strong {
  color: #f9fafb;
}

main {
  flex: 1;
}

.section {
  padding: 3.2rem 1rem;
}

.section-tight {
  padding: 2.6rem 1rem;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.6rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #1f2937;
  background: rgba(15,23,42,0.9);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-kicker span.bullet {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-title {
  font-size: clamp(2.1rem, 3.2vw, 2.9rem);
  line-height: 1.08;
  margin: 0.9rem 0 0.6rem;
  color: #f9fafb;
}

.hero-lede {
  font-size: 0.98rem;
  color: #cbd5f5;
  max-width: 32rem;
}

.hero-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  border: 1px solid var(--accent-soft);
  background: var(--accent-soft);
  color: #111827;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  text-decoration: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.68rem 1.6rem;
  border-radius: 999px;
  border: 1px solid #1f2937;
  background: transparent;
  color: #e5e7eb;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: var(--accent-soft);
  text-decoration: none;
}

.hero-right {
  position: relative;
  border-radius: 1.4rem;
  border: 1px solid #1f2937;
  background: radial-gradient(circle at top, #020617, #020617);
  padding: 0.9rem;
  overflow: hidden;
}

.hero-photo {
  border-radius: 1.1rem;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #020617);
  min-height: 230px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  background-image: url('hero-lancaster-water-damage.jpg');
  background-size: cover;
  background-position: center;
}

.hero-tag {
  position: absolute;
  bottom: 0.9rem;
  left: 0.9rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.9);
  border: 1px solid #1f2937;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.hero-tag strong {
  color: var(--accent);
}

.section-heading {
  font-size: 1.5rem;
  color: #f9fafb;
  margin: 0 0 0.4rem;
}

.section-sub {
  font-size: 0.94rem;
  color: var(--text-muted);
  margin: 0 0 1.3rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.card {
  background: var(--bg-alt);
  border-radius: 1rem;
  border: 1px solid var(--border-subtle);
  padding: 1.3rem 1.3rem 1.1rem;
}

.card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
  color: #f9fafb;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.16rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #1f2937;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-soft);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.1rem;
  align-items: flex-start;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.list-check li {
  margin-bottom: 0.25rem;
}

.list-check li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 0.4rem;
  font-weight: 600;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.1rem;
}

.city-card {
  border-radius: 0.9rem;
  border: 1px solid #1f2937;
  padding: 0.95rem 1rem 0.9rem;
  background: #020617;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.city-card strong {
  color: #f9fafb;
}

.crumbs {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.crumbs a {
  color: var(--text-muted);
}

.crumbs a:hover {
  color: var(--accent-soft);
}

.page-title {
  font-size: 1.7rem;
  margin: 0 0 0.5rem;
  color: #f9fafb;
}

.page-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 40rem;
}

.page-body {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.page-body h2 {
  font-size: 1.08rem;
  margin: 1.4rem 0 0.45rem;
  color: #f9fafb;
}

.page-body ul {
  padding-left: 1.15rem;
}

.page-body li {
  margin-bottom: 0.25rem;
}

form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
  color: #e5e7eb;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 0.55rem;
  border: 1px solid #1f2937;
  background: #020617;
  color: #e5e7eb;
  font-size: 0.9rem;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #6b7280;
}

footer {
  border-top: 1px solid #1f2937;
  background: #020617;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.6rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-inner a {
  color: var(--text-muted);
}

.footer-inner a:hover {
  color: var(--accent-soft);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.badge {
  border-radius: 999px;
  border: 1px solid #1f2937;
  padding: 0.16rem 0.7rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .hero,
  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  header {
    position: static;
  }
}

@media (max-width: 720px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  nav ul {
    flex-wrap: wrap;
    row-gap: 0.4rem;
  }
}
