:root {
  --red: #b72d22;
  --deep-red: #7d1d19;
  --ink: #1e1714;
  --brown: #4b3127;
  --cream: #fbf3e4;
  --paper: #fffaf1;
  --line: #eadcc8;
  --muted: #73665d;
  --white: #fff;
  --max: 1440px;
  --header: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  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,
figure,
address {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

address {
  font-style: normal;
}

.wrap {
  width: 100%;
  overflow: hidden;
}

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

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

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

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

.section-head h2,
.brand-text h2,
.franchise-text h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: 0;
}

.section-head p,
.brand-text p,
.franchise-text p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

  .section-space {
    padding: 112px 5vw;
  }
}

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

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

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

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

  .section-head h2,
  .brand-text h2,
  .franchise-text h2 {
    font-size: 2rem;
    line-height: 1.24;
  }

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

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

  .section-head h2,
  .brand-text h2,
  .franchise-text h2 {
    font-size: 1.82rem;
  }
}
