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

:root {
  --bg: #FAFAF7;
  --fg: #18181B;
  --accent: #B45309;
  --accent-light: #FEF3C7;
  --muted: #78716C;
  --border: #E7E5E4;
  --card-bg: #FFFFFF;
  --charcoal: #27272A;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-accent: 'Spectral', Georgia, serif;
}

html { scroll-behavior: smooth; }

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

/* === STICKY CLICK-TO-CALL BAR === */
.sticky-call-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  min-height: 60px;
  box-shadow: 0 3px 16px rgba(180, 83, 9, 0.5);
}

body { padding-top: 60px; }

.sticky-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 48px;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.sticky-call-btn:hover {
  background: #FEF3C7;
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.sticky-call-btn:active {
  transform: scale(0.98);
}

.sticky-call-phone {
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.sticky-call-phone:hover {
  text-decoration: underline;
}

/* Mobile — phone number hidden, button takes full width */
@media (max-width: 480px) {
  .sticky-call-bar {
    padding: 0.6rem 1rem;
  }
  .sticky-call-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
  }
  .sticky-call-phone {
    display: none;
  }
}

/* === TRUST BADGE STRIP === */
.trust-badges {
  background: #F5F4F0;
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
}

.trust-badges-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0 1.5rem;
}

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

.trust-badge-sep {
  width: 1px;
  height: 28px;
  background: var(--border);
}

/* === NAV === */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}

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

.nav-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  padding: 4rem 2rem 5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.hero-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  max-width: 18ch;
}

.hero-phone-line {
  margin-bottom: 0.75rem;
}

.hero-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.15s ease;
}

.hero-phone-link:hover { opacity: 0.75; }

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 60ch;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  min-height: 52px;
  min-width: 52px;
  box-shadow: 0 4px 14px rgba(180, 83, 9, 0.35);
  transition: transform 0.1s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.cta-primary:hover {
  background: #9a4508;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(180, 83, 9, 0.4);
}

.cta-primary:active { transform: scale(0.97); }

.cta-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border: 2px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  min-height: 52px;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.cta-secondary:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-social-proof svg { color: var(--accent); flex-shrink: 0; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .step-arrow { display: none; }
  .hero-stats { gap: 1.5rem; }
  .stat-divider { display: none; }
  .guarantee-inner { flex-direction: column; gap: 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .cta-primary, .cta-secondary { text-align: center; justify-content: center; }
  .form-row { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero { padding: 3rem 1.5rem 3.5rem; }
  .hero-headline { max-width: none; }
  .services, .process, .closing { padding: 4rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; }
  .nav { padding: 1rem 1.5rem; }
}

/* === GUARANTEE === */
.guarantee {
  padding: 4rem 2rem;
  background: var(--charcoal);
  color: #FAFAF7;
}

.guarantee-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.guarantee-icon { flex-shrink: 0; }

.guarantee-text h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.guarantee-text p {
  color: #A1A1AA;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 60ch;
}

/* === SERVICES === */
.services { padding: 6rem 2rem; }

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

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  color: var(--fg);
}

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

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color 0.2s ease;
}

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

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

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

.service-note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

/* === PROCESS === */
.process { padding: 6rem 2rem; background: #F5F4F0; }

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

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

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

.step-arrow {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  padding-top: 5rem;
  flex-shrink: 0;
}

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

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

.closing-badge {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: #FAFAF7;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.closing-sub {
  color: #71717A;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 50ch;
  margin: 0 auto;
}

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

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.footer-contact a {
  color: var(--accent);
  text-decoration: none;
}

.footer-contact a:hover { text-decoration: underline; }

.footer-sep { color: var(--border); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}

/* === CONTACT FORM === */
.contact-form { padding: 5rem 2rem; background: #F5F4F0; }
.contact-form-inner { max-width: 560px; margin: 0 auto; }
.contact-form .section-heading { margin-bottom: 0.75rem; }
.contact-form > .contact-form-inner > p { display: none; } /* hide old subtext */
.contact-form form { display: flex; flex-direction: column; gap: 0; }
.contact-form input:focus { outline: none; border-color: var(--accent); }
.contact-form button:hover { opacity: 0.9; }

/* Social proof above form */
.form-social-proof {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.form-social-proof svg { color: var(--accent); flex-shrink: 0; }

/* Form fields */
.form-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--fg);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  margin-bottom: 0.75rem;
  -webkit-appearance: none;
  appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2378716C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%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;
  cursor: pointer;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.12);
}

.form-input::placeholder { color: #a8a29e; }
.form-input.error, .form-select.error { border-color: #ef4444; }

/* Submit button */
.form-submit {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  min-height: 56px;
  width: 100%;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 14px rgba(180, 83, 9, 0.3);
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  letter-spacing: 0.01em;
}

.form-submit:hover {
  background: #9a4508;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(180, 83, 9, 0.4);
}

.form-submit:active { transform: scale(0.98); }

/* Micro-copy and alt phone */
.form-micro-copy {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0;
  font-weight: 400;
}

.form-alt-phone {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 1.25rem;
}

.form-phone-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.form-phone-link:hover { text-decoration: underline; }

/* Mobile form — form always visible, inputs stacked */
@media (max-width: 560px) {
  .form-row { flex-direction: column; gap: 0; }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .step-arrow { display: none; }
  .hero-stats { gap: 1.5rem; }
  .stat-divider { display: none; }
  .guarantee-inner { flex-direction: column; gap: 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .hero-headline { max-width: none; }
  .services, .process, .closing { padding: 4rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; }
  .nav { padding: 1rem 1.5rem; }
}