:root {
  --background: #fbf7f2;
  --foreground: #2d2622;
  --primary: #be5731;
  --primary-hover: #a94927;
  --primary-foreground: #ffffff;
  --secondary: #eee2d4;
  --secondary-strong: #e3d2c0;
  --muted: #f1ece5;
  --muted-foreground: #7d7167;
  --border: #e1d7cd;
  --card: #ffffff;
  --anthracite: #312f33;
  --shadow-sm: 0 10px 30px rgba(32, 24, 18, 0.08);
  --shadow-md: 0 22px 60px rgba(24, 17, 13, 0.14);
  --shadow-lg: 0 30px 70px rgba(13, 11, 10, 0.18);
  --radius: 18px;
  --radius-lg: 32px;
  --container: 1240px;
  --header-h: 90px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
svg { width: 1em; height: 1em; display: block; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}
.section { padding: 96px 0; }
.section-soft { background: rgba(238, 226, 212, 0.32); }
.bordered { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-dark {
  position: relative;
  background: var(--anthracite);
  color: white;
  overflow: hidden;
  padding: 88px 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
p { margin: 0; }

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}
.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 18px;
}
.section-heading p {
  color: var(--muted-foreground);
  font-size: 1.08rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 16px 34px rgba(190, 87, 49, 0.26);
}
.btn-primary:hover { background: var(--primary-hover); }
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}
.btn-glass {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(255,255,255,0.22);
  backdrop-filter: blur(12px);
}
.btn-glass:hover { background: rgba(255,255,255,0.18); }
.btn-glass-light {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(255,255,255,0.18);
}
.btn.full { width: 100%; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal.is-visible { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}
