:root {
  --bg: #ffffff;
  --ink: #121212;
  --muted: #5a5a5a;
  --line: #d9d4cc;
  --accent: #1b2b34;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 48px 24px 80px;
  background: var(--bg);
  color: var(--ink);
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

body.minimal {
  background: #000;
  padding: 48px 24px 80px;
  margin: 0;
}

body.minimal nav a {
  color: #d9d4cc;
}

body.minimal nav a:hover,
body.minimal nav a:focus,
body.minimal nav a.active {
  color: #ffffff;
  font-weight: 700;
}

body.minimal .hero-full-container {
  height: 100vh;
  position: relative;
  z-index: 1;
}

body.minimal .hero-full-container h1 {
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-weight: 900;
}

body.minimal .hero-full-wrapper {
  display: table;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
}

body.minimal .hero-full-wrapper .text-content {
  display: table-cell;
  vertical-align: middle;
  transform: translateY(-48px);
}

body.minimal .white-text-container h1,
body.minimal .white-text-container h2,
body.minimal .white-text-container h3,
body.minimal .white-text-container h4,
body.minimal .white-text-container h5,
body.minimal .white-text-container p {
  color: #ffffff;
  text-shadow: 0 1px 3px #000000;
}

body.minimal .white-text-container a {
  color: #ffffff;
}

body.minimal .background-image-container {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

body.minimal .hero-full-container .container {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

body.minimal .hero-full-container .row {
  margin-left: 0;
  margin-right: 0;
}

body.minimal .hero-full-container .col-xs-12 {
  padding-left: 0;
  padding-right: 0;
}

#site-border-left,
#site-border-right,
#site-border-top,
#site-border-bottom {
  display: none;
}

.page {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

nav {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  font-size: 14px;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 10;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  text-transform: uppercase;
}

nav a:hover,
nav a:focus {
  color: var(--ink);
  text-decoration: none;
}

nav a.active {
  color: var(--ink);
  font-weight: 700;
}

h1, h2 {
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}

h1 {
  font-size: 36px;
  margin: 0 0 20px 0;
}

h2 {
  font-size: 24px;
  margin: 36px 0 12px;
}

p {
  margin: 0 0 16px 0;
}

.section-note {
  color: var(--muted);
  font-size: 14px;
}

.divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 28px 0;
}

.list {
  display: grid;
  gap: 18px;
}

.item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.item:last-child {
  border-bottom: 0;
}

.item-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}

.item-meta {
  color: var(--muted);
  font-size: 13px;
}

.tagline {
  font-size: 15px;
  color: var(--muted);
}

footer {
  margin-top: 48px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 640px) {
  body {
    padding: 32px 20px 64px;
  }

  h1 {
    font-size: 30px;
  }
}
