/* === 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;
}

/* === 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: 1.25rem;
  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: 6rem 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.9rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  max-width: 14ch;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 60ch;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* === 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 p { color: #6b7280; font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.65; }
.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; }

/* === 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; }
}