:root {
  --bg: #f7f4ee;
  --text: #241f1a;
  --muted: #6f655c;
  --panel: #ffffff;
  --line: #ded6ca;
  --accent: #3a4f41;
  --accent-soft: #e7eee8;
  --shadow: 0 18px 50px rgba(36, 31, 26, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 244, 238, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

a { color: inherit; text-decoration: none; }

.brand {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.94rem;
  color: var(--muted);
}

.nav-links a:hover { color: var(--text); }

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  padding: 104px 0 88px;
  max-width: 920px;
}

.eyebrow, .section-label {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--accent);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 10px 0 24px;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.hero-text {
  font-size: 1.35rem;
  max-width: 760px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  border: 1px solid var(--accent);
}

.button.primary {
  background: var(--accent);
  color: white;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.section {
  padding: 64px 0;
  border-top: 1px solid var(--line);
}

.section > p,
.section .split p {
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 800px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.statement {
  background: var(--accent-soft);
  margin: 20px 0;
  padding: 44px;
  border: 1px solid #d3dfd5;
  border-radius: 30px;
}

.statement p { margin-bottom: 0; }

.contact { padding-bottom: 90px; }

footer {
  border-top: 1px solid var(--line);
  padding: 28px 24px;
  text-align: center;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 72px;
  }

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

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

  .statement {
    padding: 28px;
  }
}
