:root {
  --red: #e22b1f;
  --dark-red: #9f1611;
  --yellow: #ffd43d;
  --ink: #151515;
  --muted: #666;
  --line: #e8e1d8;
  --cream: #fff8ec;
  --white: #fff;
  --max: 1440px;
  --header: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  background: var(--cream);
  word-break: keep-all;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

ul,
ol,
dl,
dd,
p,
h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

.site-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.section-pad {
  padding: 130px 6vw;
}

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

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.section-head span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
}

.section-head p {
  margin-top: 22px;
  color: #3f3a34;
  font-size: 1.08rem;
  line-height: 1.75;
}

.section-head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 26px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 900;
}

@media (max-width: 1439px) {
  :root {
    --header: 84px;
  }

  .section-pad {
    padding: 110px 5vw;
  }
}

@media (max-width: 1279px) {
  .section-pad {
    padding: 92px 5vw;
  }
}

@media (max-width: 767px) {
  :root {
    --header: 68px;
  }

  .section-pad {
    padding: 72px 20px;
  }

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

  .section-head h2 {
    font-size: 2rem;
    line-height: 1.18;
  }

  .section-head p {
    font-size: 0.98rem;
    line-height: 1.65;
  }
}

@media (max-width: 320px) {
  .section-pad {
    padding-right: 16px;
    padding-left: 16px;
  }

  .section-head h2 {
    font-size: 1.8rem;
  }
}
