:root {
  --accent: #b88a2f;
  --accent-dark: #8a6420;
  --text-main: #000000;
  --text-muted: #000000;
  --surface: #ffffff;
  --surface-soft: #f6f4ef;
  --border-soft: #e8dfcf;
  --shadow-soft: 0 12px 30px rgba(12, 30, 22, 0.08);
  --radius: 16px;
  --section-space: 96px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", Helvetica, Arial, sans-serif;
  line-height: 1.2;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", Helvetica, Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--surface);
  line-height: 1.2;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

section {
  padding: var(--section-space) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 42px;
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-main);
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 980px;
  margin: 10px auto 0;
  font-size: clamp(0.98rem, 1.3vw, 1.25rem);
  line-height: 1.2;
}

.section-divider {
  display: block;
  width: 140px;
  height: 1px;
  margin: 20px auto 24px;
  background: rgba(184, 138, 47, 0.5);
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
