:root {
  --bg: #f7f3ea;
  --panel: #fffdf8;
  --panel-alt: #f3efe6;
  --text: #1e1e1b;
  --muted: #5e5c56;
  --line: #d8d1c3;
  --accent: #1e4d47;
  --accent-soft: #d9ebe7;
  --shadow: 0 8px 30px rgba(40, 33, 20, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 243, 234, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(216, 209, 195, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}

.brand { font-weight: 700; letter-spacing: -0.02em; }
nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  max-width: 13ch;
}

h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
h3 { font-size: 1.12rem; }

.lead, .proof-copy p, .cta-panel p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-photo-wrap {
  display: flex;
  justify-content: center;
}
.hero-photo {
  width: min(360px, 100%);
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(216, 209, 195, 0.8);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 10px 24px rgba(30, 77, 71, 0.18);
}
.btn-secondary {
  background: var(--panel);
  border: 1px solid var(--line);
}

.section { padding: 72px 0; }
.section-alt {
  background: linear-gradient(to bottom, rgba(255,253,248,0.65), rgba(243,239,230,0.95));
  border-top: 1px solid rgba(216, 209, 195, 0.75);
  border-bottom: 1px solid rgba(216, 209, 195, 0.75);
}

.section-head {
  max-width: 780px;
  margin-bottom: 32px;
}

.card-grid, .process-grid {
  display: grid;
  gap: 20px;
}
.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card, .process-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.card p, .process-card p {
  margin: 10px 0 0;
  color: var(--muted);
}
.step {
  display: inline-flex;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}

.proof-copy {
  max-width: 820px;
}
.proof-image-block {
  margin: 28px 0 0;
  background: var(--panel);
  border-radius: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.proof-image-block.narrow {
  max-width: 980px;
}
.proof-image {
  border-radius: 20px;
}

.cta-section {
  padding-top: 84px;
  padding-bottom: 84px;
}
.cta-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}
.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.contact-link {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  border-top: 1px solid rgba(216, 209, 195, 0.75);
  padding: 24px 0 40px;
  color: var(--muted);
  font-size: 0.95rem;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 960px) {
  .hero,
  .cta-panel,
  .card-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  nav {
    display: none;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    position: static;
  }

  .section, .cta-section {
    padding: 56px 0;
  }

  .cta-panel,
  .card,
  .process-card,
  .proof-image-block {
    padding: 18px;
  }

  .footer-row,
  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }
}
