:root {
  --bg: #0a0f0a;
  --bg-light: #111a11;
  --fg: #e8ede5;
  --fg-muted: #8a9a82;
  --accent: #7cdb4a;
  --accent-dark: #5fb832;
  --warm: #d4a857;
  --surface: #1a2418;
  --border: #2a3a26;
  --radius: 12px;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ======= BUTTONS ======= */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0a0f0a;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 0 rgba(124, 219, 74, 0);
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(124, 219, 74, 0.25);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ======= NAV ======= */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 15, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-decoration: none;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--fg);
}

.nav-links .nav-cta {
  background: var(--accent);
  color: #0a0f0a;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  transition: background 0.2s ease;
}

.nav-links .nav-cta:hover {
  background: var(--accent-dark);
  color: #0a0f0a;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
}

/* ======= HERO ======= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 7rem 2rem 5rem;
  overflow: hidden;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  color: var(--fg);
}

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

.hero .lede {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-texture {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 219, 74, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* ======= SECTION SHARED ======= */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-lede {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin-top: 0.8rem;
}

h2 .accent {
  color: var(--accent);
}

/* ======= FEATURES ======= */
.features {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  margin-bottom: 3.5rem;
}

.features-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: var(--accent);
}

.feature-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ======= SERVICES SECTION ======= */
.services-section {
  padding: 6rem 2rem;
  background: var(--bg-light);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.25s ease, transform 0.2s ease;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.service-card--featured {
  border-color: var(--accent);
  background: rgba(124, 219, 74, 0.04);
}

.service-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--accent);
  color: #0a0f0a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 8px 8px;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.service-card > p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.service-details {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-details li {
  color: var(--fg-muted);
  font-size: 0.875rem;
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.service-details li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

.service-price {
  font-size: 0.95rem;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.service-price strong {
  color: var(--accent);
  font-size: 1.1rem;
}

.services-cta {
  text-align: center;
}

/* ======= WHY ======= */
.why {
  padding: 6rem 2rem;
  background: var(--bg);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-text h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.why-text p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.why-text .highlight {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.1rem;
}

.why-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
}

.stat-value {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

/* ======= QUOTE FORM ======= */
.quote-section {
  padding: 6rem 2rem;
  background: var(--bg-light);
}

.quote-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.quote-header {
  margin-bottom: 3rem;
}

.quote-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
}

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
}

.quote-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group--full {
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.02em;
}

.form-group .req {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a9a82' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--fg-muted);
  opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 219, 74, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-error {
  background: rgba(255, 80, 80, 0.1);
  border: 1px solid rgba(255, 80, 80, 0.3);
  border-radius: 8px;
  color: #ff8080;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1.2rem;
}

.form-success {
  background: rgba(124, 219, 74, 0.1);
  border: 1px solid rgba(124, 219, 74, 0.3);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.success-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.form-success strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.form-success p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

.btn-submit {
  width: 100%;
  margin-top: 0.5rem;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem;
  border-radius: 8px;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.quote-trust {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1rem;
}

.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.trust-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.trust-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--fg);
}

.trust-item p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* ======= SERVICE AREA ======= */
.service-area {
  padding: 6rem 2rem;
  background: var(--bg);
}

.service-area-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.service-area-text h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.neighborhood-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin-top: 1.8rem;
}

.neighborhood-item {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  transition: color 0.2s ease;
}

.neighborhood-item.active {
  color: var(--fg);
}

.neighborhood-item.active::before {
  content: '● ';
  color: var(--accent);
  font-size: 0.6rem;
  vertical-align: middle;
}

.neighborhood-item.coming-soon {
  color: var(--fg-muted);
  opacity: 0.7;
}

.neighborhood-item.coming-soon em {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--warm);
}

.service-area-map {
  position: sticky;
  top: 84px;
}

.seattle-map {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* ======= CLOSING ======= */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  background: var(--bg-light);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.closing-actions {
  display: flex;
  justify-content: center;
}

/* ======= FOOTER ======= */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.footer-location {
  color: var(--fg-muted);
  font-size: 0.9rem;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 900px) {
  .quote-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .quote-trust {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .trust-item {
    flex: 1;
    min-width: 200px;
  }

  .service-area-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-area-map {
    position: static;
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 5.5rem 1.5rem 4rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .why-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .stat {
    flex: 1;
    min-width: 140px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .neighborhood-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-form {
    padding: 1.75rem 1.25rem;
  }

  .closing {
    padding: 5rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
