:root {
  --bg: #f7f3ee;
  --fg: #1a1714;
  --accent: #c0521a;
  --accent-light: #e0764a;
  --muted: #7a6f63;
  --light: #ede8e0;
  --white: #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* NAV */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(26,23,20,0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* HERO */
.hero {
  padding: 7rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  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);
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
}
.hero-ledge {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}
.hero-cta { display: flex; gap: 1rem; align-items: center; }
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease;
}
.btn-primary:hover { background: var(--accent-light); }

/* STATS */
.stats {
  background: var(--fg);
  color: var(--white);
  padding: 3.5rem 2rem;
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 0 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.stat:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  line-height: 1.4;
}

/* FEATURES */
.features {
  padding: 7rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.features-header {
  margin-bottom: 4rem;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}
.feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.feature-icon {
  color: var(--accent);
  width: 44px;
  height: 44px;
  background: rgba(192,82,26,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* PROCESS */
.process {
  background: var(--light);
  padding: 7rem 2rem;
}
.process-header {
  max-width: 1100px;
  margin: 0 auto 4rem;
}
.process-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.step { display: flex; flex-direction: column; gap: 1rem; }
.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  letter-spacing: -0.04em;
}
.step-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.step-content p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 8rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* FOOTER */
.footer {
  background: var(--fg);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; gap: 0.4rem; align-items: center; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}
.footer-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-zone {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .hero-headline { font-size: 2.8rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat { border-right: none; padding: 0; }
  .features { padding: 4rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .process { padding: 4rem 1.5rem; }
  .process-steps { grid-template-columns: 1fr; }
  .closing { padding: 5rem 1.5rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.2rem; }
}
/* CONTACT FORM */
.contact-form-section {
  background: var(--fg);
  padding: 7rem 2rem;
}
.contact-form-inner {
  max-width: 680px;
  margin: 0 auto;
}
.contact-form-section .section-eyebrow { color: rgba(255,255,255,0.5); }
.contact-form-section .section-title { color: var(--white); }
.contact-sub { font-size: 0.95rem; color: rgba(255,255,255,0.5); margin-top: -1.5rem; margin-bottom: 2.5rem; line-height: 1.6; }

.cf { display: flex; flex-direction: column; gap: 1rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-field { display: flex; flex-direction: column; gap: 0.4rem; }
.cf-full { grid-column: 1 / -1; }
.cf label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.cf input, .cf select, .cf textarea { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; color: var(--white); font-family: var(--font-body); font-size: 0.9rem; padding: 0.65rem 0.85rem; outline: none; transition: border-color 0.2s; }
.cf input::placeholder, .cf textarea::placeholder { color: rgba(255,255,255,0.25); }
.cf input:focus, .cf select:focus, .cf textarea:focus { border-color: var(--accent); }
.cf select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; padding-right: 2rem; }
.cf select option { background: #2a2522; }
.cf textarea { resize: vertical; min-height: 90px; }
.cf-msg { font-size: 0.875rem; padding: 0.7rem 1rem; border-radius: 4px; display: none; }
.cf-msg-success { background: rgba(32,160,80,0.2); color: #7de8a8; border: 1px solid rgba(32,160,80,0.3); }
.cf-msg-error { background: rgba(192,82,26,0.2); color: #f5a882; border: 1px solid rgba(192,82,26,0.3); }
.cf-submit { align-self: flex-start; margin-top: 0.5rem; cursor: pointer; border: none; }
.cf-submit:disabled { opacity: 0.6; cursor: not-allowed; }

@media (max-width: 640px) {
  .cf-row { grid-template-columns: 1fr; }
}
