:root {
  --paper: #f8f2e9;
  --paper-soft: #fffaf2;
  --ink: #272727;
  --muted: #6f6a64;
  --line: rgba(39, 39, 39, 0.22);
  --blue: #7ea0d8;
  --coral: #e99582;
  --yellow: #f0c75c;
  --shadow: 0 18px 55px rgba(45, 35, 24, 0.08);
  --serif: "Gowun Batang", "Times New Roman", serif;
  --sans: "Inter", "Pretendard", "Apple SD Gothic Neo", sans-serif;
  --hand: "Nanum Pen Script", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.95), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(232, 218, 196, 0.34), transparent 34rem),
    linear-gradient(180deg, #fbf7f0 0%, var(--paper) 100%);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  overflow-x: clip;
}

a,
button {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(100%, 1760px);
  margin: 0 auto;
  padding: 28px clamp(24px, 3vw, 54px) 16px;
  background: linear-gradient(180deg, rgba(248, 242, 233, 0.94), rgba(248, 242, 233, 0.74));
  backdrop-filter: blur(14px);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.site-header.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.brand {
  text-decoration: none;
  font-size: clamp(22px, 1.7vw, 32px);
  font-weight: 800;
  letter-spacing: 0.18em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(38px, 5vw, 86px);
  border-bottom: 1px solid var(--line);
  padding: 0 28px 16px;
}

.primary-nav a,
.text-button,
.menu-button {
  border: 0;
  background: transparent;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-button,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-button {
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  position: relative;
}

.icon-button span {
  width: 15px;
  height: 15px;
  border: 1.7px solid var(--ink);
  border-radius: 999px;
}

.icon-button::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 1.7px;
  right: 1px;
  bottom: 3px;
  background: var(--ink);
  transform: rotate(45deg);
}

.menu-button {
  gap: 16px;
}

.menu-button i,
.menu-button i::before,
.menu-button i::after {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--ink);
  content: "";
}

.menu-button i {
  position: relative;
}

.menu-button i::before {
  position: absolute;
  top: -9px;
}

.menu-button i::after {
  position: absolute;
  top: 9px;
}

.page-shell {
  width: min(100%, 1760px);
  margin: 0 auto;
  padding: 0 clamp(24px, 3vw, 54px) 0;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(22px, 2vw, 34px);
  align-items: center;
  height: clamp(560px, 39vw, 610px);
  padding-top: clamp(10px, 2vw, 28px);
}

.issue-dots {
  position: absolute;
  left: clamp(1px, 0.2vw, 4px);
  bottom: 13%;
  display: grid;
  gap: 16px;
  z-index: 3;
}

.issue-dots button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 0;
  background: transparent;
  text-decoration: none;
  font-size: 13px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.issue-dots button:hover,
.issue-dots button:focus-visible {
  transform: translateX(3px);
  outline: none;
}

.issue-dots .is-active {
  background: var(--blue);
  color: #1d2a3b;
}

.hero-copy {
  grid-column: 1 / span 5;
  align-self: stretch;
  position: relative;
  min-width: 0;
  height: 100%;
  display: grid;
  align-content: center;
  padding: 22px 0 12px clamp(34px, 4vw, 58px);
}

.issue-label {
  display: grid;
  gap: 6px;
  margin: 0 0 clamp(22px, 3vw, 42px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.issue-label strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0;
  width: max-content;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.issue-label b {
  color: var(--blue);
  font-size: 26px;
}

.hero-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(68px, min(7.2vw, 8.8cqw), 140px);
  line-height: 0.9;
  letter-spacing: -0.075em;
  font-weight: 400;
  width: min(100%, 8.35ch);
  min-height: 1.8em;
  display: grid;
  align-content: center;
}

.hero-title span {
  display: block;
  white-space: nowrap;
  transform-origin: left center;
}

.hero-title span:has(+ span),
.hero-title span:last-child {
  max-width: 100%;
}

.intro-cluster {
  display: grid;
  grid-template-columns: minmax(82px, 128px) minmax(110px, 168px) minmax(210px, 340px);
  align-items: center;
  gap: clamp(10px, 1.6vw, 26px);
  margin-top: clamp(22px, 3vw, 40px);
}

.intro-cluster p {
  margin: 0;
  max-width: 310px;
  font-size: 15px;
  color: #46413c;
}

.dog-doodle {
  width: min(100%, 140px);
}

.speech-doodle {
  width: min(100%, 190px);
  transform: rotate(-2deg);
}

.deco {
  position: absolute;
  pointer-events: none;
  z-index: 4;
}

.deco-sun {
  width: clamp(58px, 4.8vw, 92px);
  top: 17%;
  left: 47%;
  transform: rotate(-12deg);
}

.deco-heart {
  width: clamp(42px, 3vw, 64px);
  right: 22%;
  top: 48%;
  filter: drop-shadow(0 4px 8px rgba(233, 149, 130, 0.08));
}

.hero-image {
  grid-column: 6 / span 5;
  align-self: stretch;
  position: relative;
  margin: 0;
  height: clamp(430px, 33vw, 520px);
  overflow: hidden;
  background: #ebe3d9;
  box-shadow: var(--shadow);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.24));
  z-index: 1;
}

.hero-image > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  filter: saturate(0.86) contrast(0.94) brightness(1.04);
}

.hero-image.is-monochrome > img:first-child {
  filter: grayscale(1) contrast(0.96) brightness(1.02);
}

.hero-image figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: #fffaf1;
  font-size: 15px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
  z-index: 2;
}

.hero-image figcaption b {
  font-weight: 500;
  letter-spacing: 0.06em;
}

.editorial-panel {
  grid-column: 11 / span 2;
  position: relative;
  min-height: clamp(430px, 33vw, 520px);
  display: grid;
  align-content: start;
  padding: 70px 0 0 clamp(20px, 2vw, 34px);
  border-left: 1px solid var(--line);
}

.season-badge {
  position: relative;
  top: auto;
  right: auto;
  justify-self: center;
  margin: 0 0 clamp(34px, 3.5vw, 58px);
  width: clamp(68px, 5vw, 90px);
  aspect-ratio: 1;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--blue);
  color: #1d2a3b;
  line-height: 1.1;
  z-index: 2;
}

.season-badge::before {
  content: "";
  position: absolute;
  inset: -42px -15px;
  z-index: -1;
  background: rgba(255, 255, 255, 0.56);
  clip-path: polygon(44% 0, 72% 20%, 57% 55%, 84% 100%, 35% 76%, 12% 41%);
}

.season-badge span {
  display: block;
  font-size: 18px;
}

.season-badge b {
  font-weight: 500;
  font-size: 13px;
}

.vertical-code {
  position: absolute;
  right: 0;
  top: 8%;
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 11px;
  letter-spacing: 0.24em;
}

.editorial-copy {
  max-width: 220px;
  display: grid;
  gap: 22px;
  position: relative;
  z-index: 2;
}

.blue-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}

.editorial-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 2.15vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 400;
}

.editorial-copy em {
  color: var(--blue);
  font-style: normal;
}

.editorial-copy p {
  margin: 0;
  color: #4b4742;
}

.editorial-copy .kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--ink);
}

.arrow-link {
  color: var(--coral);
  text-decoration: none;
  font-size: 30px;
  width: max-content;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 34px);
  align-items: start;
  margin-top: clamp(28px, 3vw, 46px);
  padding-left: clamp(36px, 4vw, 76px);
}

.story-card {
  position: relative;
  min-width: 0;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.story-card.is-active {
  transform: translateY(-8px);
}

.story-card figure {
  position: relative;
  margin: 0;
  height: clamp(260px, 20vw, 330px);
  overflow: hidden;
  background: #eee5da;
  transition: box-shadow 0.35s ease, outline-color 0.35s ease;
}

.story-card.is-active figure {
  outline: 2px solid rgba(126, 160, 216, 0.62);
  outline-offset: 6px;
  box-shadow: 0 18px 36px rgba(126, 160, 216, 0.16);
}

.story-card img {
  transition: transform 0.7s ease, filter 0.7s ease;
}

.story-card:hover figure > img {
  transform: scale(1.02);
  filter: saturate(0.92) contrast(0.98);
}

.story-card figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.94) brightness(1.04);
}

.story-car {
  grid-column: 1 / span 4;
}

.story-car figure {
  aspect-ratio: auto;
}

.story-car img {
  object-position: 50% 50%;
}

.story-cat {
  grid-column: 5 / span 3;
}

.story-cat figure {
  aspect-ratio: auto;
}

.story-cat figure > img {
  object-position: 50% 45%;
}

.story-place {
  grid-column: 8 / span 3;
}

.story-place figure {
  aspect-ratio: auto;
}

.story-place figure > img {
  object-position: 50% 50%;
}

.story-water {
  grid-column: 11 / span 2;
}

.story-water figure {
  aspect-ratio: auto;
}

.story-water figure > img {
  object-position: 52% 50%;
}

.card-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 0;
  padding: 44px 14px 13px;
  font-size: 14px;
  color: #171717;
  background: linear-gradient(180deg, rgba(248, 242, 233, 0), rgba(248, 242, 233, 0.78) 72%, rgba(248, 242, 233, 0.94));
}

.card-caption b {
  font-weight: 500;
  letter-spacing: 0.08em;
}

.sticker {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.flower-sticker {
  width: clamp(64px, 5vw, 96px);
  left: -34px;
  top: -38px;
  transform: rotate(-8deg);
}

.note-sticker {
  width: clamp(124px, 8.4vw, 168px);
  right: -26px;
  top: -34px;
  transform: rotate(6deg);
}

.smile-sticker {
  width: clamp(52px, 3.8vw, 76px);
  right: 18%;
  top: 13%;
  opacity: 0.78;
}

.help-bubble {
  position: absolute;
  right: -18px;
  bottom: 64px;
  width: clamp(54px, 4.5vw, 76px);
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 35% 25%, #f8b5a8, var(--coral));
  box-shadow: 0 16px 26px rgba(194, 92, 73, 0.22);
  font-size: 24px;
  display: grid;
  place-items: center;
}

.site-footer {
  width: min(100%, 1760px);
  margin: clamp(28px, 3vw, 48px) auto 0;
  padding: 0 clamp(24px, 3vw, 54px) 46px;
  display: grid;
  grid-template-columns: 1.55fr 0.75fr 1fr 0.62fr;
  gap: clamp(18px, 2vw, 36px);
  border-top: 1px solid var(--line);
  align-items: stretch;
}

.weekly-picks,
.newsletter,
.footer-quote,
.social-links {
  padding-top: 26px;
  min-width: 0;
}

.weekly-picks {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
}

.weekly-picks h2 {
  margin: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 400;
}

.weekly-picks ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(70px, 1fr));
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.weekly-picks li {
  display: grid;
  align-content: start;
  gap: 12px;
  font-size: 11px;
}

.weekly-picks li + li {
  border-left: 1px solid var(--line);
  padding-left: 14px;
}

.weekly-picks b {
  font-weight: 600;
}

.newsletter {
  border-left: 1px solid var(--line);
  padding-left: clamp(18px, 2vw, 28px);
}

.newsletter h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.newsletter p {
  margin: 0 0 20px;
  color: #57524d;
  font-size: 13px;
}

.newsletter label {
  display: grid;
  grid-template-columns: 1fr 38px;
  border: 1px solid rgba(39, 39, 39, 0.35);
  width: min(100%, 270px);
  max-width: 100%;
  overflow: hidden;
}

.newsletter input,
.newsletter button {
  border: 0;
  background: transparent;
  min-height: 36px;
}

.newsletter input {
  padding: 0 12px;
  color: var(--ink);
  min-width: 0;
}

.newsletter button {
  border-left: 1px solid rgba(39, 39, 39, 0.25);
  width: 38px;
  padding: 0;
  display: grid;
  place-items: center;
  line-height: 1;
}

.footer-quote {
  margin: 0;
  border-left: 1px solid var(--line);
  padding-left: clamp(18px, 2vw, 28px);
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 34px);
  line-height: 1.12;
}

.footer-quote em {
  color: var(--coral);
  font-style: normal;
}

.social-links {
  border-left: 1px solid var(--line);
  padding-left: clamp(18px, 2vw, 28px);
  display: grid;
  align-content: start;
  gap: 12px;
  font-size: 13px;
}

.social-links a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.social-links span {
  margin-top: 22px;
  letter-spacing: 0.18em;
  font-size: 12px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-copy.reveal,
.hero-image.reveal,
.editorial-panel.reveal {
  opacity: 0;
  transform: translateY(12px);
}

[data-swap-area] {
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.is-switching [data-swap-area] {
  opacity: 0;
  transform: translateY(10px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1366px) {
  .site-header {
    padding-top: 28px;
  }

  .hero-title {
    font-size: clamp(58px, 6.5vw, 96px);
  }

  .intro-cluster {
    grid-template-columns: 90px 130px 1fr;
  }

  .editorial-copy h2 {
    font-size: 28px;
  }
}

@media (max-width: 1180px) {
  .primary-nav {
    gap: 36px;
  }

  .hero-grid {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .hero-copy {
    grid-column: 1 / span 4;
    padding-left: 34px;
  }

  .hero-title {
    font-size: clamp(46px, 5.6vw, 68px);
    letter-spacing: -0.065em;
    width: min(100%, 7.2ch);
  }

  .hero-image {
    grid-column: 5 / span 4;
  }

  .editorial-panel {
    grid-column: 9 / span 2;
    padding-left: 22px;
  }

  .intro-cluster {
    grid-template-columns: 76px 120px;
  }

  .intro-cluster p {
    grid-column: 1 / -1;
  }

  .story-grid {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .story-car {
    grid-column: 1 / span 4;
  }

  .story-cat {
    grid-column: 5 / span 3;
  }

  .story-place {
    grid-column: 8 / span 3;
  }

  .story-water {
    grid-column: 8 / span 3;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 22px 20px 14px;
  }

  .primary-nav,
  .text-button {
    display: none;
  }

  .page-shell {
    padding: 0 20px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    gap: 24px;
    padding-top: 22px;
  }

  .issue-dots {
    position: static;
    display: flex;
    order: 0;
    gap: 8px;
    margin-left: 0;
  }

  .hero-copy {
    order: 1;
    min-height: auto;
    display: block;
    padding: 0;
  }

  .hero-title {
    font-size: clamp(52px, 16vw, 86px);
    width: min(100%, 7.2ch);
    min-height: auto;
  }

  .deco-sun {
    width: 52px;
    top: 36px;
    right: 30px;
    left: auto;
  }

  .intro-cluster {
    grid-template-columns: 72px minmax(110px, 150px);
    gap: 10px 14px;
  }

  .hero-image {
    order: 2;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .editorial-panel {
    order: 3;
    min-height: auto;
    padding: 26px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .season-badge {
    justify-self: end;
    margin: 0 0 28px;
  }

  .vertical-code {
    display: none;
  }

  .editorial-copy {
    max-width: 420px;
  }

  .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
    padding-left: 0;
    margin-top: 42px;
  }

  .story-car,
  .story-cat,
  .story-place,
  .story-water {
    grid-column: auto;
  }

  .story-water figure {
    height: clamp(260px, 42vw, 340px);
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 0 20px 36px;
  }

  .weekly-picks,
  .newsletter,
  .footer-quote,
  .social-links {
    border-left: 0;
    padding-left: 0;
  }

  .weekly-picks {
    grid-template-columns: 1fr;
  }

  .weekly-picks h2 {
    writing-mode: horizontal-tb;
    transform: none;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 14px;
  }

  .brand {
    font-size: 20px;
  }

  .menu-button span {
    display: none;
  }

  .header-actions {
    gap: 12px;
  }

  .issue-label {
    margin-bottom: 18px;
  }

  .hero-title {
    font-size: clamp(48px, 19vw, 72px);
    letter-spacing: -0.07em;
  }

  .intro-cluster {
    grid-template-columns: 76px 1fr;
  }

  .speech-doodle {
    justify-self: start;
    width: 150px;
  }

  .intro-cluster p {
    font-size: 14px;
  }

  .hero-image {
    aspect-ratio: 4 / 3.45;
  }

  .editorial-copy h2 {
    font-size: 34px;
  }

  .story-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 0 20px;
    scrollbar-width: none;
  }

  .story-grid::-webkit-scrollbar {
    display: none;
  }

  .story-grid::after {
    content: "swipe →";
    flex: 0 0 auto;
    align-self: center;
    color: var(--blue);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0 10px;
  }

  .story-card {
    flex: 0 0 min(82vw, 330px);
    scroll-snap-align: start;
  }

  .story-place figure,
  .story-water figure {
    height: 265px;
  }

  .weekly-picks ol {
    grid-template-columns: 1fr;
  }

  .weekly-picks li + li {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 14px;
  }

  .footer-quote {
    font-size: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
