:root{
  --bg: #f4efe7;
  --surface: rgba(255,255,255,.92);
  --surface-strong: #ffffff;
  --text: #111111;
  --muted: #6b6258;
  --accent: #f28c18;
  --accent-2: #ffb257;
  --dark: #101010;
  --border: rgba(17,17,17,.10);
  --border-strong: rgba(17,17,17,.18);
  --shadow-soft: 0 10px 30px rgba(0,0,0,.08);
  --shadow-lg: 0 22px 60px rgba(0,0,0,.18);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --container: 1200px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html,body{ margin:0; padding:0; }

body{
  font-family:'Inter', Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{ display:block; max-width:100%; }
a{ text-decoration:none; color:inherit; }

h1,h2,h3,h4,.section-kicker,.text-link,.btn{
  font-family:'Bebas Neue', Arial, sans-serif;
  letter-spacing:.04em;
}

.container{
  width:min(100% - 32px, var(--container));
  margin-inline:auto;
}

.section{
  padding:96px 0;
}

.section--light{
  background:linear-gradient(180deg, rgba(255,255,255,.32), rgba(255,255,255,0));
}

.section--dark{
  background:#111;
  color:#fff;
}

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

.section-head--between{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:24px;
}

.section-head--center{
  text-align:center;
  max-width:760px;
  margin:0 auto 36px;
}

.section-kicker{
  margin:0 0 14px;
  text-transform:uppercase;
  font-size:12px;
  color:var(--muted);
  letter-spacing:.14em;
}

.section-kicker--light{
  color:rgba(255,255,255,.7);
}

.section-head h2{
  margin:0;
  font-size:clamp(34px, 5vw, 68px);
  line-height:.95;
  text-transform:uppercase;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  border:none;
  cursor:pointer;
  font-size:13px;
  text-transform:uppercase;
  transition:transform .25s ease, opacity .25s ease, background .25s ease;
}

.btn:hover,
.btn:focus-visible{
  transform:translateY(-2px);
}

.btn-primary{
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  color:#fff;
  box-shadow:0 16px 30px rgba(242,140,24,.24);
}

.btn-secondary {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #f3f4f6;
  color: #111827;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.text-link{
  font-size:13px;
  text-transform:uppercase;
  font-weight:800;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  border:0;
}

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

.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

@media (max-width: 900px){
  .section{
    padding:72px 0;
  }

  .section-head--between{
    flex-direction:column;
    align-items:flex-start;
  }
}

