:root {
  --paper: #f7f3ed;
  --surface: #fffaf4;
  --ink: #3f2c25;
  --muted: #76685f;
  --line: rgba(63, 44, 37, 0.16);
  --taupe: #b8aa9b;
  --forest: #17312f;
  --forest-soft: #234844;
  --ice: #dcecea;
  --gold: #c9a85f;
  --shadow: 0 18px 52px rgba(36, 27, 21, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0)),
    var(--paper);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
audio {
  font: inherit;
  max-width: 100%;
}

button {
  cursor: pointer;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--forest-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
}

h2 {
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 700;
}

p {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 840px) {
  h2 {
    font-size: 2.6rem;
  }
}

@media (max-width: 520px) {
  .section {
    width: min(100% - 24px, 1120px);
    padding: 44px 0;
  }

  h2 {
    font-size: 2rem;
  }
}
