@font-face {
  font-family: 'BOLAS';
  src: url('font/BOLAS/Bolas-ttf/Bolas-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'BOLAS';
  src: url('font/BOLAS/Bolas-ttf/Bolas-Bold.ttf') format('truetype');
  font-weight: 700;
}

:root {
  --bg: #f3ede4;
  --ink: #14110d;
  --paper: #fffefb;
  --page-bg: radial-gradient(circle at 10% 10%, #fff8ee 0%, var(--bg) 55%, #e8dccb 100%);
}

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

html {
  min-height: 100%;
  background: var(--page-bg);
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background: transparent;
  font-family: 'Gowun Batang', serif;
  color: var(--ink);
  display: grid;
  grid-template-rows: 1fr auto;
}

@supports (-webkit-touch-callout: none) {
  body {
    min-height: -webkit-fill-available;
  }
}

.page {
  width: min(980px, 92vw);
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 3rem 0 2rem;
}

.hero {
  width: 100%;
  position: relative;
  background: var(--paper);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(20, 17, 13, 0.2);
  border: 1px solid rgba(20, 17, 13, 0.12);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.site-footer {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(20, 17, 13, 0.68);
  padding: 0 0 1.2rem;
  letter-spacing: 0.08em;
}

@media (max-width: 640px) {
  .page {
    width: 94vw;
    padding-top: 1.2rem;
  }
}
