:root {
  --accent: #f2c94c;
  --bg: #fff7d6;
  --text: #2c2418;
  --sub: #6f5f43;
  --border: #e8dbb0;
  --radius: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.site-header {
  padding: 28px 20px 12px;
}

.site-wrap {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.site-logo {
  font-weight: 800;
  letter-spacing: 2px;
  text-decoration: none;
  color: var(--text);
  font-size: clamp(20px, 3vw, 26px);
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px 72px;
}

.hero {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.eyebrow {
  color: var(--sub);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.1;
}

.store-button img {
  width: 160px;
  height: auto;
  display: block;
}

.hero-media img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

footer {
  padding: 24px 20px 32px;
  color: var(--sub);
  font-size: 14px;
}

.footer-inner {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

footer a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

footer a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .store-button img {
    width: 150px;
  }
}
