:root {
  --bg: #f5f2ec;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #1d2128;
  --muted: #67707d;
  --accent: #c7903f;
  --accent-dark: #9a6a28;
  --accent-soft: rgba(199, 144, 63, 0.14);
  --dark: #14171b;
  --dark-2: #21252c;
  --border: rgba(35, 41, 51, 0.08);
  --shadow: 0 18px 55px rgba(20, 23, 27, 0.12);
  --shadow-soft: 0 10px 28px rgba(20, 23, 27, 0.07);
  --radius: 26px;
  --container: 1220px;
  --blur: blur(16px);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(199, 144, 63, 0.08),
      transparent 30%
    ),
    radial-gradient(circle at right 20%, rgba(0, 0, 0, 0.03), transparent 28%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(199, 144, 63, 0.14);
}

h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 820px;
  text-wrap: balance;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.24);
}
section {
  position: relative;
  z-index: 2;
  padding: 104px 0;
}

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

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-dark);
}

h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.lead {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
  max-width: 720px;
}
input,
textarea {
  width: 100%;
  border: 1px solid rgba(31, 41, 55, 0.12);
  background: #fff;
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
  resize: vertical;
  transition: 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(199, 144, 63, 0.14);
}

textarea {
  min-height: 126px;
}
