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

:root {
  --black: #090e0a;
  --white: #e4ede6;
  --off: #ecf2ed;
  --red: #6dbd7a;
  --border: #131e14;
  --muted: #3a5040;
  --faint: #111a12;
}

html { scroll-behavior: smooth; }

body {
  background: #000000;
  color: var(--white);
  font-family: 'Space Mono', monospace;
  overflow-x: hidden;
}

/* ── LAYOUT ── */
.page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--black);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

body .nav-logo {
  color: var(--red);
}

.home-page .page-hero.about-hero {
  min-height: calc(70vh - 60px);
}

.home-page .page-hero.about-hero .page-main {
  padding-top: 6.25rem;
  padding-bottom: 5.25rem;
}

.home-page .eyebrow-highlight {
  color: var(--white);
}

/* ── HERO ── */
.hero {
  padding-top: 60px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  border-bottom: 1px solid var(--border);
}

.hero-main {
  padding: 6rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--red);
}

.hero-eyebrow-text {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title em {
  font-style: normal;
  color: var(--red);
}

.hero-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}

.hero-desc {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.90rem;
  line-height: 2;
  color: #6a8070;
  max-width: 420px;
  letter-spacing: 0.03em;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border: 1px solid #1e3020;
  transition: all 0.2s;
  white-space: nowrap;
}
.hero-cta:hover { border-color: var(--white); background: var(--white); color: var(--black); }

/* Hero sidebar */
.hero-sidebar {
  padding: 6rem 2.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-section {
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #4a6050;
  margin-bottom: 0.8rem;
}

.sidebar-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--white);
}

.sidebar-sub {
  font-size: 0.68rem;
  color: #5a7060;
  margin-top: 0.4rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
}

.sidebar-new {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 0.2rem 0.5rem;
  margin-top: 0.6rem;
}

.sidebar-zine-link {
  display: block;
  margin-top: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5a7060;
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-zine-link:hover { color: var(--white); }

/* ── ABOUT ── */
#about {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  border-bottom: 1px solid var(--border);
  min-height: 60vh;
}

.about-label-col {
  padding: 4rem 2.5rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--faint);
}

.section-title-vert {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  align-self: flex-end;
}

.about-text-col {
  padding: 4rem 3rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 0.95;
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
  color: var(--white);
}

.about-body {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.8rem;
  line-height: 2.2;
  color: #777;
  letter-spacing: 0.03em;
}

.about-body p + p { margin-top: 1.2rem; }

.about-keywords-col {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.keyword-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.keyword-item:last-child { border-bottom: none; padding-bottom: 0; }

.keyword-tag {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}

.keyword-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--white);
}

.keyword-desc {
  font-size: 0.72rem;
  color: #5a7060;
  margin-top: 0.4rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

/* ── BOOKS ── */
#books {
  border-bottom: 1px solid var(--border);
}

.books-header {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 2.5rem 3rem;
  border-bottom: 1px solid var(--border);
}

.books-header-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
}

.books-header-rule { flex: 1; height: 1px; background: var(--border); }

.books-header-sub {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4a6050;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.book-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
}
.book-card:last-child { border-right: none; }
.book-card:hover { background: #0d1410; }

.book-cover {
  width: 100%;
  aspect-ratio: 2/3;
  background: var(--faint);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.book-cover-inner {
  padding: 1.5rem;
  text-align: center;
  width: 100%;
}

.book-cover-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--white);
  opacity: 0.6;
}

.book-cover-stripe {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}

.book-num {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: #444;
  margin-bottom: 0.5rem;
}

.book-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.book-author {
  font-size: 0.68rem;
  color: #555;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.book-genre {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid #2a1a1a;
  display: inline-block;
  padding: 0.2rem 0.5rem;
}

/* ── ZINE PROMO ── */
#zine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
  min-height: 70vh;
}

.zine-left {
  padding: 5rem 4rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #0b120c;
}

.zine-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.zine-eyebrow-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
.zine-eyebrow-text { font-size: 0.66rem; letter-spacing: 0.3em; color: var(--red); text-transform: uppercase; }

.zine-title-block { flex: 1; display: flex; align-items: center; }

.zine-big-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0.03em;
}

.zine-big-title span { display: block; color: var(--red); }

.zine-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.zine-desc {
  font-size: 0.74rem;
  color: #5a7060;
  line-height: 1.9;
  letter-spacing: 0.04em;
  max-width: 260px;
}

.zine-cta {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border: 1px solid #1e3020;
  padding: 0.7rem 1.5rem;
  transition: all 0.2s;
  white-space: nowrap;
}
.zine-cta:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.zine-right {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.zine-issue-item {
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  color: var(--white);
}
.zine-issue-item:first-child { padding-top: 0; }
.zine-issue-item:hover .zine-issue-title { color: var(--red); }

.zine-issue-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  color: #2a4030;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.zine-issue-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  flex: 1;
  transition: color 0.2s;
}

.zine-issue-meta {
  font-size: 0.64rem;
  color: #4a6050;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: right;
  line-height: 1.8;
  flex-shrink: 0;
}

/* ── EVENTS ── */
#events {
  border-bottom: 1px solid var(--border);
}

.events-header {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 2.5rem 3rem;
  border-bottom: 1px solid var(--border);
}

.events-header-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
}

.events-header-rule { flex: 1; height: 1px; background: var(--border); }

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

.event-item {
  padding: 2.5rem 3rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  cursor: pointer;
  transition: background 0.2s;
}
.event-item:nth-child(even) { border-right: none; }
.event-item:nth-last-child(-n+2) { border-bottom: none; }
.event-item:hover { background: #0b120c; }

.event-date-block {
  text-align: center;
  border-right: 1px solid var(--border);
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.event-month {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

.event-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--white);
}

.event-year {
  font-size: 0.58rem;
  color: #4a6050;
  letter-spacing: 0.15em;
}

.event-info { display: flex; flex-direction: column; justify-content: center; gap: 0.4rem; }

.event-type {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

.event-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--white);
}

.event-venue {
  font-size: 0.68rem;
  color: #5a7060;
  letter-spacing: 0.08em;
}

.event-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.4rem; }

.etag {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid #2a2a2a;
  padding: 0.15rem 0.5rem;
  color: #5a7060;
}

.event-poster {
  display: block;
  width: 100%;
  max-width: 220px;
  margin-top: 0.8rem;
  border: 1px solid var(--border);
}

.events-archive-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 3rem;
  border-top: 1px solid var(--border);
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s, padding-left 0.2s;
}

.events-archive-link:hover {
  background: #0b120c;
  padding-left: 3.5rem;
}

.events-archive-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: #5a7060;
}

.events-archive-value {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

/* ── CONTACT ── */
#contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.contact-left {
  padding: 5rem 4rem;
  border-right: 1px solid var(--border);
}

.contact-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 0.9;
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
}

.contact-body {
  font-size: 0.76rem;
  line-height: 2;
  color: #6a8070;
  letter-spacing: 0.04em;
  margin-bottom: 3rem;
}

.contact-links { display: flex; flex-direction: column; gap: 0; }

.contact-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--white);
  transition: padding-left 0.2s;
}
.contact-link-item:hover { padding-left: 0.5rem; }
.contact-link-item:hover .contact-link-label { color: var(--red); }

.contact-link-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5a7060;
  transition: color 0.2s;
}

.contact-link-value {
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  color: #888;
}

.contact-right {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form-label {
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-label {
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4a6050;
}

.form-input, .form-textarea {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.8rem 1rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input::placeholder, .form-textarea::placeholder { color: #2a4030; }
.form-input:focus, .form-textarea:focus { border-color: #4a6050; }

.form-textarea { height: 120px; resize: none; }

.form-submit {
  background: var(--white);
  border: 1px solid var(--white);
  color: var(--black);
  padding: 0.85rem 2rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  align-self: flex-start;
  margin-top: 0.5rem;
}
.form-submit:hover { background: transparent; color: var(--white); }

.top-btn {
  position: fixed;
  right: calc((100vw - 1280px) / 2 - 52px);
  bottom: 2.5rem;
  width: 42px;
  background: transparent;
  border: 1px solid #1e3020;
  color: #4a6050;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, border-color 0.2s, color 0.2s;
  pointer-events: none;
  z-index: 300;
}
.top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.top-btn:hover {
  border-color: #6dbd7a;
  color: #6dbd7a;
}
.top-btn-line {
  display: block;
  width: 1px;
  height: 28px;
  background: currentColor;
}
.top-btn-text {
  font-family: 'Space Mono', monospace;
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
@media (max-width: 1380px) {
  .top-btn { right: 0.8rem; }
}

.landing-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 60px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: var(--black);
  min-height: calc(100vh - 60px);
}

.landing-hero {
  min-height: calc(62vh - 60px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  position: relative;
  overflow: hidden;
  background: #0a120c;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 420px at 75% 50%, rgba(109, 189, 122, 0.13), transparent 65%),
    linear-gradient(130deg, rgba(109, 189, 122, 0.07), rgba(9, 14, 10, 0.95) 50%, rgba(9, 14, 10, 1));
  pointer-events: none;
}

.landing-main {
  padding: 1.8rem 4rem 1.6rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  background: rgba(9, 14, 10, 0.82);
}

.landing-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.4rem, 9vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.landing-title em {
  font-style: normal;
  color: var(--red);
}

.accent-yellow {
  color: #f5c400;
}

.landing-title .accent {
  color: var(--red);
}

.landing-footer {
  margin-top: auto;
  padding-top: 2.25rem;
  padding-bottom: 0.8rem;
  border-top: 1px solid var(--border);
}

.landing-desc {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.95rem;
  line-height: 2.15;
  color: #7f9486;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.55rem;
}

.landing-output {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.55rem;
}

.landing-output span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid #1e3020;
  color: var(--white);
  background: rgba(13, 20, 16, 0.72);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.landing-output .landing-output-label {
  border-color: var(--red);
  color: var(--red);
  background: transparent;
}

.landing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--red);
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.landing-cta.secondary {
  border-color: #1e3020;
}

.landing-cta:hover {
  background: #0d1410;
}

.landing-cta.secondary:hover {
  border-color: var(--red);
  background: #0d1410;
}

.landing-sidebar {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  background: rgba(9, 14, 10, 0.82);
}

.landing-catchphrase {
  padding: 1.1rem 1.6rem 0.9rem;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-align: right;
  color: #7f9486;
  border-bottom: 1px solid var(--border);
}

.sidebar-about-intro {
  padding: 1.9rem 1.8rem 1.7rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 0.92;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 1.15rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-about-intro p {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.78rem;
  line-height: 1.9;
  color: #6a8070;
  letter-spacing: 0.02em;
}

.update-log {
  display: flex;
  flex-direction: column;
}

.update-item {
  display: block;
  padding: 1.45rem 1.8rem 1.35rem;
  border-bottom: 1px solid var(--border);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s, padding-left 0.2s;
}

.update-item:hover {
  background: #0d1410;
  padding-left: 2.05rem;
}

.update-date {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--red);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.update-item strong {
  display: block;
  font-family: 'Bebas Neue', 'Noto Sans KR', sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.update-item span:last-child {
  display: block;
  margin-top: 0.65rem;
  color: #6a8070;
  font-size: 0.68rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.update-item--book,
.update-item--event {
  display: grid;
  grid-template-columns: 74px 1fr;
  column-gap: 1rem;
  align-items: start;
}

.update-item--book img,
.event-thumb {
  grid-row: 1 / span 3;
  width: 74px;
  border: 1px solid #1e3020;
  background: #0d1410;
}

.event-thumb {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 3 / 4;
}

.event-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(0.35) contrast(0.94) brightness(0.84) saturate(0.78);
}

.event-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(228, 237, 230, 0.04) 0 1px, transparent 1px 5px),
    linear-gradient(160deg, rgba(9, 14, 10, 0.2), rgba(109, 189, 122, 0.16));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.update-item--zine {
  display: grid;
  grid-template-columns: 74px 1fr;
  column-gap: 1rem;
  align-items: start;
}

.zine-thumb {
  grid-row: 1 / span 3;
  width: 74px;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.55rem 0.5rem;
  border: 1px solid #243628;
  background:
    repeating-linear-gradient(-8deg, rgba(228, 237, 230, 0.08) 0 1px, transparent 1px 7px),
    linear-gradient(160deg, rgba(109, 189, 122, 0.25), rgba(9, 14, 10, 0.92) 58%),
    #0d1410;
  color: var(--white);
  box-shadow: inset 0 0 0 3px rgba(9, 14, 10, 0.5);
}

.zine-thumb span {
  color: var(--red);
  font-size: 0.55rem;
  line-height: 1;
  letter-spacing: 0.16em;
}

.zine-thumb strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.35rem;
  line-height: 0.8;
  letter-spacing: 0.03em;
}

.landing-gates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gate-card {
  position: relative;
  min-height: 250px;
  padding: 2rem 2.2rem 1.65rem;
  border-right: 1px solid var(--border);
  color: var(--white);
  text-decoration: none;
  overflow: hidden;
  background: #090e0a;
  transition: background 0.2s, padding-left 0.2s;
}

.gate-card:last-child {
  border-right: none;
}

.gate-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
}

.gate-card--books::before {
  background:
    linear-gradient(90deg, rgba(109, 189, 122, 0.22) 0 7px, transparent 7px 16px),
    linear-gradient(135deg, rgba(109, 189, 122, 0.16), transparent 52%);
}

.gate-card--zine::before {
  background:
    repeating-linear-gradient(-8deg, rgba(228, 237, 230, 0.08) 0 1px, transparent 1px 10px),
    linear-gradient(140deg, rgba(217, 212, 193, 0.14), transparent 58%);
}

.gate-card--events::before {
  background:
    linear-gradient(135deg, rgba(199, 212, 223, 0.14), transparent 48%),
    repeating-linear-gradient(90deg, rgba(109, 189, 122, 0.1) 0 1px, transparent 1px 9px);
}

.gate-card:hover {
  background: #0d1410;
  padding-left: 2.55rem;
}

.gate-kicker,
.gate-title,
.gate-text,
.gate-link {
  position: relative;
  z-index: 1;
}

.gate-kicker {
  display: block;
  color: var(--red);
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.gate-title {
  margin-top: 1.25rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 0.86;
  letter-spacing: 0.03em;
}

.gate-text {
  max-width: 260px;
  margin-top: 1.2rem;
  font-family: 'Noto Sans KR', sans-serif;
  color: #7f9486;
  font-size: 0.78rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.gate-link {
  display: inline-block;
  margin-top: 1.3rem;
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.landing-latest {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.landing-latest .latest-card {
  border-bottom: none;
  border-right: 1px solid var(--border);
}

.landing-latest .latest-card:last-child {
  border-right: none;
}

.landing-latest .latest-card--book .latest-media {
  grid-template-columns: 80px 1fr;
}

.landing-latest .latest-card--book .latest-media img {
  width: 80px;
}

.landing-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.8rem 0 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(109, 189, 122, 0.16);
  border: 1px solid rgba(109, 189, 122, 0.35);
  color: var(--white);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.badge-outline {
  background: transparent;
  border-color: #2a4030;
  color: #7a9486;
}

@keyframes riseFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.landing-title { animation: riseFade 0.7s ease-out 0.05s both; }
.landing-badges { animation: riseFade 0.7s ease-out 0.2s both; }
.landing-footer { animation: riseFade 0.7s ease-out 0.35s both; }

.latest-card { animation: riseFade 0.7s ease-out both; }
.latest-card:nth-child(1) { animation-delay: 0.2s; }
.latest-card:nth-child(2) { animation-delay: 0.3s; }
.latest-card:nth-child(3) { animation-delay: 0.4s; }

.latest-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.95rem;
  padding: 1.35rem 1.8rem 1.25rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s;
}

.latest-card:hover {
  background: #0d1410;
}

.latest-card:last-child {
  border-bottom: none;
}

.latest-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

.latest-label-group {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
}

.latest-label-ko {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
}

.latest-label-sep {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: #5a7060;
}

.latest-kicker {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5a7060;
  margin-bottom: 0.55rem;
}

.latest-title {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.latest-title.en {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  line-height: 0.95;
  letter-spacing: 0.03em;
}

.latest-meta {
  margin-top: 0.55rem;
  color: #6f8678;
  font-size: 0.68rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.latest-submeta {
  margin-top: 0.3rem;
  color: #6a8070;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.latest-link {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}

.latest-card:hover .latest-link {
  color: var(--red);
}

.latest-media {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  align-items: start;
}

.latest-media img {
  width: 64px;
  display: block;
  border: 1px solid #1e3020;
}

.latest-card--book .latest-media {
  grid-template-columns: 120px 1fr;
  gap: 1.1rem;
}

.latest-card--book .latest-media img {
  width: 120px;
}

.latest-card--zine {
  padding: 1.45rem 2rem 1.35rem;
}

.latest-card--zine .latest-media {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.latest-card--zine .latest-cover {
  aspect-ratio: 3 / 4;
  background: #0f1712;
  border: 1px solid #1e3020;
  display: flex;
  align-items: center;
  justify-content: center;
}

.latest-card--zine .latest-cover-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.latest-card--zine .latest-cover {
  width: 100%;
}


.latest-card--zine .latest-copy {
  max-width: 100%;
}

.latest-card--event {
  background: #0e141d;
}

.latest-card--event:hover {
  background: #131b26;
}
.landing-about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  border-top: 1px solid var(--border);
}

.landing-about-main {
  padding: 2.4rem 4rem;
  border-right: 1px solid var(--border);
}

.landing-about-title {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--white);
}

.landing-about-copy {
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
}

.landing-about-copy p {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.88rem;
  line-height: 2;
  color: #6a8070;
  max-width: 720px;
}

.landing-about-copy p + p {
  margin-top: 1rem;
}


.landing-about-side {
  display: flex;
  flex-direction: column;
}

.about-metric {
  padding: 1.55rem 2rem 1.35rem;
  border-bottom: 1px solid var(--border);
}

.about-metric:last-child {
  border-bottom: none;
}

.about-metric-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

.about-metric-value {
  margin-top: 0.75rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

.about-metric-text {
  margin-top: 0.55rem;
  font-size: 0.72rem;
  line-height: 1.8;
  color: #5a7060;
}

.landing-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.landing-link-card {
  padding: 2.4rem 2.5rem;
  border-right: 1px solid var(--border);
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s, padding-left 0.2s;
}

.landing-link-card:last-child {
  border-right: none;
}

.landing-link-card:hover {
  background: #0d1410;
  padding-left: 2.9rem;
}

.landing-link-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}

.landing-link-title {
  margin-top: 0.8rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.landing-link-text {
  margin-top: 0.65rem;
  font-size: 0.72rem;
  line-height: 1.8;
  color: #5a7060;
}

@media (max-width: 980px) {
  .home-page .page-hero.about-hero {
    min-height: auto;
  }

  .home-page .page-hero.about-hero .page-main {
    padding-top: 4.5rem;
    padding-bottom: 3rem;
  }

  .landing-wrap {
    border-left: none;
    border-right: none;
    padding-top: 116px;
  }

  .landing-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .landing-about {
    grid-template-columns: 1fr;
  }

  .landing-about-main {
    padding: 3rem 1.5rem 2rem;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .landing-main {
    padding: 4rem 1.5rem 2rem;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .landing-sidebar {
    grid-template-rows: none;
  }

  .sidebar-about-intro,
  .update-item {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .update-item--book,
  .update-item--event,
  .update-item--zine {
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 0.85rem;
  }

  .update-item--book img,
  .event-thumb,
  .zine-thumb {
    width: 58px;
  }

  .update-item strong,
  .update-item span:last-child {
    overflow-wrap: anywhere;
  }

  .update-item:hover {
    padding-left: 1.5rem;
  }

  .landing-gates {
    grid-template-columns: 1fr;
  }

  .gate-card {
    min-height: 210px;
    padding: 1.8rem 1.5rem 1.5rem;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .gate-card:last-child {
    border-bottom: none;
  }

  .gate-card:hover {
    padding-left: 1.5rem;
  }

  .landing-latest {
    grid-template-columns: 1fr;
  }

  .landing-latest .latest-card {
    min-height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .landing-latest .latest-card:last-child {
    border-bottom: none;
  }

  .landing-links {
    grid-template-columns: 1fr;
  }

  .landing-link-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .landing-link-card:last-child {
    border-bottom: none;
  }

}
