/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAFAF8;
  --bg-dark: #1A1A1A;
  --accent: #FF6B2C;
  --accent-dark: #E0551A;
  --fg: #1A1A1A;
  --fg-muted: #5A5A5A;
  --fg-faint: #8A8A8A;
  --surface: #FFFFFF;
  --border: #E4E4E0;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === Navigation === */
.site-nav {
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  font-weight: 400;
}

/* === Hero === */
.hero {
  background: var(--bg-dark);
  color: #FFFFFF;
  padding: 5rem 2.5rem 4rem;
}

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

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #C8C8C8;
  max-width: 480px;
}

/* Stat block in hero */
.hero-stat-block {
  background: #252525;
  border: 1px solid #333;
  border-radius: 2px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.stat-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  color: #999;
  line-height: 1.4;
}

/* === Proof Strip === */
.proof-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2.5rem;
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.proof-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 1rem;
}

.proof-trades {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.proof-trades span {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--fg);
}

.proof-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.proof-sub {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* === Shared Section Styles === */
.section-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-headline {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* === Services === */
.services {
  padding: 5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

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

.services-inner .section-headline {
  margin-bottom: 3rem;
  max-width: 500px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card:hover {
  background: var(--surface);
}

.service-icon {
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--fg);
}

.service-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === Why === */
.why {
  padding: 5rem 2.5rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.why-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--fg-muted);
  margin-top: 1.25rem;
}

.gap-block {
  background: var(--bg-dark);
  color: #FFFFFF;
  padding: 2.5rem;
}

.gap-block h4 {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.gap-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.gap-list li {
  font-size: 0.9rem;
  color: #C0C0C0;
  padding-left: 1.25rem;
  position: relative;
}

.gap-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.gap-closing {
  font-size: 0.875rem;
  color: #888;
  font-style: italic;
  border-top: 1px solid #333;
  padding-top: 1.25rem;
}

/* === Process === */
.process {
  padding: 5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.process-inner .section-headline {
  margin-bottom: 3rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.step {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--border);
}

.step:last-child {
  border-right: none;
}

.step-num {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.step h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.step p {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === Closing === */
.closing {
  background: var(--accent);
  padding: 5rem 2.5rem;
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.closing p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 1rem;
}

.closing-note {
  font-size: 0.875rem !important;
  color: rgba(255,255,255,0.6) !important;
}

/* === Footer === */
.site-footer {
  background: var(--bg-dark);
  color: #888;
  padding: 3rem 2.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.8125rem;
  color: #555;
}

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

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

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

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

  .step {
    border-bottom: 1px solid var(--border);
  }

  .step:nth-child(2) {
    border-right: none;
  }
}

/* === Hero CTA === */
.hero-cta-group {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--accent);
  color: #FFFFFF;
  padding: 0.875rem 1.75rem;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.2s ease, transform 0.1s ease;
  width: fit-content;
}

.hero-cta-phone:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.hero-cta-sub {
  font-size: 0.8125rem;
  color: #888;
  margin: 0;
}

/* === Navigation CTA === */
.nav-cta-wrap {
  display: flex;
  align-items: center;
}

.nav-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.nav-phone-btn:hover {
  background: var(--accent-dark);
}

@media (max-width: 500px) {
  .nav-phone-btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
  }
  .nav-phone-btn svg {
    width: 14px;
    height: 14px;
  }
}

/* === Service Area === */
.service-area {
  padding: 5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

.service-area-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.service-area-inner .section-headline {
  margin-bottom: 3rem;
  max-width: 500px;
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Map visual */
.map-visual {
  position: relative;
  background: var(--bg-dark);
  border-radius: 2px;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.grid-line {
  position: absolute;
  background: #252525;
}

.grid-line--h {
  left: 0; right: 0;
  height: 1px;
}

.grid-line--h:nth-child(1) { top: 33%; }
.grid-line--h:nth-child(2) { top: 66%; }

.grid-line--v {
  top: 0; bottom: 0;
  width: 1px;
}

.grid-line--v:nth-child(3) { left: 33%; }
.grid-line--v:nth-child(4) { left: 66%; }

.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.map-pin--hq {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.map-pin--zone {
  top: 30%;
  left: 60%;
}

.map-pin--zone:nth-of-type(3) {
  top: 60%;
  left: 35%;
}

.map-pin--zone:nth-of-type(4) {
  top: 70%;
  left: 65%;
}

.map-pin--outer {
  top: 20%;
  left: 20%;
}

.map-pin--outer:nth-of-type(6) {
  top: 15%;
  left: 80%;
}

.map-pin-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.map-pin--outer .map-pin-dot {
  width: 8px;
  height: 8px;
  background: #555;
}

.map-pin-label {
  font-size: 0.6875rem;
  color: #888;
  white-space: nowrap;
}

.map-pin--hq .map-pin-label {
  color: var(--accent);
  font-weight: 600;
}

.map-pin-pulse {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pinPulse 2s ease-out infinite;
}

@keyframes pinPulse {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* Service cities */
.service-cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.cities-heading {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 1.25rem;
}

.cities-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cities-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--fg);
}

.cities-list li svg {
  color: var(--accent);
  flex-shrink: 0;
}

.cities-list--secondary li {
  color: var(--fg-muted);
  font-size: 0.875rem;
}

.service-area-note {
  margin-top: 2rem;
  font-size: 0.8125rem;
  color: var(--fg-faint);
  font-style: italic;
}

/* === Reviews === */
.reviews {
  padding: 5rem 2.5rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-inner .section-headline {
  margin-bottom: 3rem;
  max-width: 500px;
}

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

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(255, 107, 44, 0.08);
}

.review-stars {
  display: flex;
  gap: 0.125rem;
  color: var(--accent);
}

.review-quote {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg);
  flex: 1;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
  margin: 0;
}

.review-trade {
  font-size: 0.75rem;
  color: var(--fg-faint);
  margin: 0;
}

/* === Contact Form === */
.contact-section {
  padding: 5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-sub {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

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

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--fg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.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(255, 107, 44, 0.12);
}

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

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A5A5A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

.form-submit-btn {
  background: var(--fg);
  color: #FFFFFF;
  border: none;
  border-radius: 2px;
  padding: 1rem 1.5rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s ease, transform 0.1s ease;
  position: relative;
}

.form-submit-btn:hover:not(:disabled) {
  background: #333;
  transform: translateY(-1px);
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loading {
  display: none;
}

.btn-loading svg {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--fg-faint);
  text-align: center;
}

.form-success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 2px;
  padding: 1rem 1.25rem;
  color: #166534;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-success svg {
  color: #22c55e;
  flex-shrink: 0;
}

/* === Responsive === */
@media (max-width: 900px) {
  .service-area-grid {
    grid-template-columns: 1fr;
  }

  .map-visual {
    height: 240px;
  }

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

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

@media (max-width: 600px) {
  .site-nav {
    padding: 1.25rem 1.5rem;
  }

  .hero {
    padding: 3rem 1.5rem;
  }

  .proof-strip,
  .services,
  .why,
  .process,
  .service-area,
  .reviews,
  .contact-section,
  .closing,
  .site-footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

  .step {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .hero-stat-block {
    padding: 1.5rem;
  }

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

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