:root {
  --paper: #f7f2ea;
  --ink: #171411;
  --muted: #676158;
  --line: #d9d0c4;
  --deep: #26352c;
  --leaf: #637563;
  --gold: #b48a4a;
  --white: #fffaf2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "NanumBarunGothic", "나눔바른고딕", sans-serif;
  line-height: 1.65;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(23, 20, 17, 0.72), rgba(23, 20, 17, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 250, 242, 0.6);
  font-family: inherit;
  font-size: 20px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(255, 250, 242, 0.86);
  font-size: 20px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 20, 17, 0.78), rgba(23, 20, 17, 0.25) 48%, rgba(23, 20, 17, 0.1)),
    linear-gradient(180deg, rgba(23, 20, 17, 0.2), rgba(23, 20, 17, 0.72));
}

.hero-copy {
  position: relative;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 160px clamp(20px, 5vw, 44px) 92px;
  color: var(--white);
}

.eyebrow,
.section-label,
.meta {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 28px;
  font-family: inherit;
  font-size: clamp(60px, 10vw, 132px);
  line-height: 0.96;
  font-weight: 500;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.88);
  font-size: clamp(18px, 2vw, 26px);
  word-break: keep-all;
}

.intro,
.content-grid,
.journal,
.contact {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  border-bottom: 1px solid var(--line);
}

.intro h2,
.section-heading h2,
.board h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.14;
  font-weight: 750;
  letter-spacing: 0;
  word-break: keep-all;
}

.intro p {
  max-width: 820px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
  word-break: keep-all;
}

.statement {
  padding: 76px clamp(20px, 6vw, 88px);
  background: var(--deep);
  color: var(--white);
}

.statement p {
  width: min(920px, 100%);
  margin: 0 0 24px;
  font-family: inherit;
  font-size: clamp(30px, 5vw, 72px);
  line-height: 1.16;
  word-break: keep-all;
}

.statement strong {
  color: #d6b170;
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 42px;
  padding: 44px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.feature-panel h3 {
  max-width: 640px;
  margin: 14px 0 0;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.12;
  word-break: keep-all;
}

.schedule-list {
  margin: 0;
}

.schedule-list div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.schedule-list dt {
  color: var(--leaf);
  font-weight: 800;
}

.schedule-list dd {
  margin: 0;
  color: var(--muted);
}

.boards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 52px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 96px;
}

.board {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.board-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.board-head > a {
  align-self: start;
  border-bottom: 1px solid var(--ink);
  color: var(--muted);
  font-size: 15px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.post-list,
.story-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.board .post-list {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.board .post-item {
  flex: 1;
}

.post-item {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.post-item:last-child {
  border-bottom: 1px solid var(--line);
}

.post-title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  word-break: keep-all;
}

.post-summary {
  margin: 0;
  color: var(--muted);
  word-break: keep-all;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 700;
}

.story-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.story-card {
  display: grid;
  align-content: space-between;
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.48);
}

.story-card h3 {
  margin: 12px 0 20px;
  font-size: 26px;
  line-height: 1.25;
  word-break: keep-all;
}

.story-card p {
  margin-bottom: 0;
  color: var(--muted);
  word-break: keep-all;
}

.contact {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 52px;
  border-top: 2px solid var(--ink);
}

.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  word-break: keep-all;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    display: block;
    padding: 18px 20px;
  }

  .nav {
    justify-content: flex-start;
    margin-top: 16px;
    gap: 12px 16px;
    font-size: 20px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-copy {
    padding-bottom: 64px;
  }

  .intro,
  .feature-panel,
  .boards,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro,
  .content-grid,
  .journal,
  .contact {
    padding: 72px 0;
  }

  .boards {
    gap: 56px;
    padding-bottom: 72px;
  }

  .story-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  .nav a {
    padding: 2px 0;
  }

  h1 {
    font-size: 58px;
  }

  .hero-lead,
  .intro p,
  .contact p {
    font-size: 17px;
  }

  .schedule-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .story-card {
    min-height: 240px;
    padding: 24px;
  }
}
