:root {
  --bg: #f4efe8;
  --text: #1e1a16;
  --subtle: #685d55;
  --line: rgba(30, 26, 22, 0.12);
  --accent: #a7c6e6;
  --accent-deep: #1c4160;
  --shadow: 0 30px 80px rgba(37, 28, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 28%),
    linear-gradient(180deg, #f8f4ee 0%, #efe7dd 55%, #e5edf4 100%);
  color: var(--text);
  font-family: "Pretendard", "Manrope", sans-serif;
}

body.about-page {
  background: #fff;
}

body.about-page .site-header {
  background: rgba(255, 255, 255, 0.96);
}

body.modal-open {
  overflow: hidden;
}

body.front-page main > section,
body.front-page .article-card {
  --reveal-y: 48px;
  --parallax-y: 0px;
}

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

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

button {
  font: inherit;
}

.page-shell {
  padding: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  width: auto;
  margin: 0 -20px 20px;
  max-width: none;
  border: none;
  border-radius: 0;
  background: rgba(244, 239, 232, 0.72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(39, 31, 22, 0.08);
}

body.front-page .page-shell {
  padding-top: 0;
}

body.front-page .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: #fff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    -webkit-backdrop-filter 220ms ease,
    backdrop-filter 220ms ease;
}

body.front-page .site-header:not(.is-solid) .brand,
body.front-page .site-header:not(.is-solid) .site-nav a,
body.front-page .site-header:not(.is-solid) .contact-button {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}

body.front-page .site-header:not(.is-solid) .contact-button {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

body.front-page .site-header.is-solid {
  border-color: transparent;
  background: rgba(244, 239, 232, 0.72);
  color: var(--text);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(39, 31, 22, 0.08);
}

body.front-page .site-header.is-solid .contact-button {
  border-color: rgba(30, 26, 22, 0.45);
  background: rgba(255, 255, 255, 0.5);
  color: inherit;
  text-shadow: none;
}

.brand {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 0.98rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.contact-button,
.slider-button {
  border: 1px solid rgba(30, 26, 22, 0.45);
  border-radius: 999px;
}

.contact-button {
  padding: 14px 24px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.5);
  transition: transform 200ms ease, background-color 200ms ease;
}

.contact-button:hover,
.contact-button:focus-visible {
  transform: translateY(-1px);
  background: white;
}

main {
  max-width: 1380px;
  margin: 0 auto;
}

body.front-page main {
  position: relative;
  z-index: 0;
}

.detail-main {
  display: grid;
  gap: 34px;
}

.detail-hero,
.detail-section {
  padding: 56px 34px 42px;
  border-radius: 34px;
  background: rgba(247, 242, 235, 0.82);
  box-shadow: 0 14px 44px rgba(43, 35, 28, 0.05);
}

.detail-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: end;
}

.detail-hero h1 {
  margin: 0;
  font-family: "Pretendard", "Manrope", sans-serif;
  font-size: clamp(3.1rem, 6vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.detail-hero p,
.detail-copy p,
.detail-list li,
.detail-grid p {
  color: var(--subtle);
  font-size: 1.04rem;
  line-height: 1.7;
}

.detail-hero-image {
  min-height: 420px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(42, 31, 21, 0.1);
}

.detail-copy {
  max-width: 760px;
}

.works-page .detail-main {
  gap: 28px;
}

.works-hero {
  grid-template-columns: 1fr;
  padding: 8px 0 0;
  background: transparent;
  box-shadow: none;
}

.works-archive {
  display: grid;
  gap: 30px;
  background: #fff;
}

.works-archive__heading,
.works-toolbar,
.works-toolbar__meta,
.works-filter-list,
.works-card__meta {
  display: flex;
}

.works-archive__heading,
.works-toolbar {
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.works-archive__heading {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(30, 26, 22, 0.12);
}

.works-archive__heading h2 {
  margin: 10px 0 0;
  font-family: "Pretendard", "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.works-archive__count {
  margin: 0;
  color: rgba(30, 26, 22, 0.7);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.works-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 24px;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(30, 26, 22, 0.08);
}

.works-filter-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 28px;
  align-items: flex-start;
}

.works-filter-group {
  display: grid;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid rgba(30, 26, 22, 0.12);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.works-filter-group__label {
  color: rgba(30, 26, 22, 0.56);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.works-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.works-filter-list[hidden] {
  display: none;
}

.works-filter-group__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.works-filter-group__toggle .works-filter-group__label {
  color: #1e1a16;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  text-transform: none;
}

.works-filter-group__icon {
  color: #1e1a16;
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 220ms ease;
  transform: rotate(0deg);
}

.works-filter-group__toggle.is-open .works-filter-group__icon {
  transform: rotate(180deg);
}

.works-filter-group.is-open {
  padding: 18px 18px 20px;
  border: 1px solid rgba(30, 26, 22, 0.12);
  border-radius: 0 0 22px 22px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 24px rgba(30, 26, 22, 0.06);
}

.works-filter,
.works-sort select {
  border: 1px solid rgba(30, 26, 22, 0.16);
  border-radius: 999px;
  background: #fff;
  color: #1e1a16;
  font: inherit;
}

.works-filter {
  padding: 10px 16px;
  cursor: pointer;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.works-filter:hover,
.works-filter:focus-visible,
.works-clear:hover,
.works-clear:focus-visible {
  transform: translateY(-1px);
}

.works-filter.is-active {
  border-color: #1e1a16;
  background: #1e1a16;
  color: #fff;
}

.works-toolbar__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.works-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.works-sort span {
  color: rgba(30, 26, 22, 0.56);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.works-sort select {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(30, 26, 22, 0.28);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  appearance: none;
  box-shadow: none;
  cursor: pointer;
  transition: color 220ms ease, transform 220ms ease;
}

.works-sort select:hover,
.works-sort select:focus-visible {
  color: rgba(30, 26, 22, 0.56);
}

.works-clear {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(30, 26, 22, 0.28);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  cursor: pointer;
  transition: color 220ms ease, transform 220ms ease;
}

.works-clear:hover,
.works-clear:focus-visible {
  color: rgba(30, 26, 22, 0.56);
}

.works-grid--archive {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 24px;
}

.works-card {
  align-content: start;
  height: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(30, 26, 22, 0.08);
}

.works-page .works-card {
  opacity: 1;
  transform: none;
  transition: transform 240ms ease, opacity 240ms ease;
}

.works-card__meta {
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
  gap: 18px;
  color: rgba(30, 26, 22, 0.6);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.works-card.is-hidden {
  display: none;
}

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

.detail-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(245,239,231,0.7));
}

.detail-grid h3 {
  margin: 0 0 10px;
  font-family: "Pretendard", "Manrope", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.detail-list {
  display: grid;
  gap: 12px;
  padding-left: 22px;
  margin: 18px 0 0;
}

.about-document {
  gap: 0;
}

.about-document__hero,
.about-document__section {
  padding: 52px 0;
  border-top: 1px solid rgba(30, 26, 22, 0.12);
}

.about-document__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 34px;
  padding: 56px 34px 42px;
  align-items: center;
  border-top: 0;
}

.about-document__copy {
  max-width: 760px;
  justify-self: start;
}

.about-document__copy > :not(.section-label) {
  margin-left: 20pt;
}

.about-document__copy h1 {
  margin: 0;
  font-family: "Pretendard", "Manrope", sans-serif;
  font-size: 30px;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.about-document__lead,
.about-document__sublead {
  margin: 18px 0 0;
  color: #1e1a16;
}

.about-document__lead {
  font-size: 1.24rem;
  font-weight: 700;
}

.about-document__sublead {
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-top: 8px;
}

.about-document__email {
  display: inline-block;
  margin-top: 26px;
  color: #1e1a16;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(30, 26, 22, 0.3);
}

.about-document__socials {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.about-document__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #b4aea8;
  transition: color 180ms ease, transform 180ms ease;
}

.about-document__social-link:hover,
.about-document__social-link:focus-visible {
  color: #8d8378;
  transform: translateY(-1px);
}

.about-document__social-link svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.about-document__social-link--brunch img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: grayscale(1) brightness(0.78) contrast(0.7) opacity(0.72);
  transition: filter 180ms ease, transform 180ms ease;
}

.about-document__social-link--brunch:hover img,
.about-document__social-link--brunch:focus-visible img {
  filter: grayscale(1) brightness(0.62) contrast(0.8) opacity(0.86);
}

.about-document__image {
  width: 100%;
  max-width: 210px;
  height: auto;
  aspect-ratio: 1;
  min-height: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 75%;
  justify-self: center;
  transform: translateX(-60pt);
  box-shadow: 0 20px 50px rgba(42, 31, 21, 0.1);
}

.about-document__section {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
}

.about-document__intro {
  display: grid;
  align-content: start;
  gap: 14px;
}

.about-document__intro p:last-child,
.about-document__body p,
.about-document__item p,
.about-document__bullets li {
  margin: 0;
  color: var(--subtle);
  font-size: 1.02rem;
  line-height: 1.25;
}

.about-document__body {
  display: grid;
  gap: 34px;
}

.about-document__group {
  display: grid;
  gap: 20px;
}

.about-document__group h2 {
  margin: 0;
  font-family: "Pretendard", "Manrope", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-document__list {
  display: grid;
  gap: 24px;
}

.about-document__item {
  display: grid;
  gap: 8px;
}

.about-document__item h3 {
  margin: 0;
  font-family: "Pretendard", "Manrope", sans-serif;
  font-size: 1.2rem;
  line-height: 1.35;
}

.about-document__date {
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--subtle);
}

.about-document__meta {
  color: #8d8378 !important;
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
}

.about-document__bullets {
  display: grid;
  gap: 12px;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  height: 100vh;
  height: 100svh;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

body.front-page .hero {
  position: sticky;
  top: 0;
  z-index: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  min-height: 100vh;
  min-height: 100svh;
  height: 100vh;
  height: 100svh;
  margin-top: 0;
  overflow: hidden;
}

.front-page__content {
  position: relative;
  z-index: 2;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  padding-top: 0;
  background: #f7f3ed;
}

.front-page__content > section,
.front-page__footer {
  width: min(100%, 1380px);
  margin-right: auto;
  margin-left: auto;
}

.front-page__content > section,
.front-page__footer {
  position: relative;
  z-index: 1;
}

.hero-slider,
.slide,
.slide img,
.slide-overlay {
  position: absolute;
  inset: 0;
}

.hero-slider {
  height: 100%;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
}

.slide {
  display: none;
  z-index: 0;
}

.slide.is-active {
  display: block;
  z-index: 1;
}

.slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.slide--hero-bottom-focus img {
  object-position: 50% 72%;
}

.slide-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 14, 15, 0.72) 0%, rgba(13, 14, 15, 0.26) 44%, rgba(13, 14, 15, 0.48) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.38));
}

.slide-copy {
  position: absolute;
  left: 58px;
  bottom: 210px;
  z-index: 2;
  max-width: 650px;
  color: white;
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slide-copy h1,
.section-intro h2,
.trip-copy h2,
.about-panel h2 {
  margin: 0;
  font-family: "Pretendard", "Manrope", sans-serif;
  font-size: clamp(3.3rem, 7vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.slide-copy h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.9rem);
  line-height: 1.18;
}

.mobile-linebreak {
  display: inline;
}

.mobile-br {
  display: none;
}

.slide-copy p:last-child,
.section-intro p,
.trip-copy p,
.about-panel p,
.info-grid p {
  color: inherit;
  font-size: 1.05rem;
  line-height: 1.65;
}

.slide-copy p:last-child {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.slider-controls {
  position: absolute;
  right: 38px;
  bottom: 36px;
  left: 38px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 20px;
}

body.front-page .slider-controls {
  bottom: 132px;
}

.slider-progress {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  overflow: hidden;
}

.slider-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: white;
  transition: transform 320ms ease;
}

.slider-buttons {
  display: flex;
  gap: 10px;
}

.slider-button {
  width: 52px;
  height: 52px;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

section {
  margin-top: 34px;
  border-radius: 34px;
}

body.front-page .front-page__content > section {
  margin-top: 0;
  border-radius: 0;
}

body.front-page .manifesto-section {
  margin-top: 0;
  padding-top: 52px;
  z-index: 3;
  background: transparent;
  box-shadow: none;
}

body.front-page .front-page__content > section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #f7f3ed;
  z-index: -1;
}

.works-section,
.hub-section,
.about-section {
  padding: 56px 34px 42px;
  background: rgba(247, 242, 235, 0.82);
  box-shadow: 0 14px 44px rgba(43, 35, 28, 0.05);
}

.manifesto-section {
  display: grid;
  gap: 24px;
  padding: 52px 34px 40px;
  background: rgba(255, 252, 248, 0.88);
  box-shadow: 0 14px 44px rgba(43, 35, 28, 0.04);
}

body.front-page .works-section,
body.front-page .hub-section,
body.front-page .trip-section {
  background: transparent;
  box-shadow: none;
}

body.front-page .trip-section::before {
  background: #ebe5db;
}

body.front-page .trip-section {
  overflow: visible;
}

.manifesto-section__copy {
  display: grid;
  justify-items: start;
  gap: 18px;
  max-width: 1050px;
}

.manifesto-section__copy .section-label {
  margin: 0;
}

.manifesto-section__copy h2 {
  margin: 0;
  padding-left: 214px;
  font-family: "Pretendard", "Manrope", sans-serif;
  font-size: 56px;
  line-height: 1.152;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.manifesto-section__copy p {
  margin: 0;
  padding-left: 214px;
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--text);
}

.manifesto-section__copy span {
  position: relative;
  display: inline-block;
}

.manifesto-section__copy span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.11em;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(100%) scaleX(1.02);
  opacity: 0.92;
}

body.front-page .hero[data-reveal],
body.front-page .manifesto-section[data-reveal],
body.front-page .works-section[data-reveal],
body.front-page .hub-section[data-reveal],
body.front-page .trip-section[data-reveal] {
  opacity: 0;
  transform: translate3d(0, calc(var(--reveal-y) + var(--parallax-y)), 0);
  transition:
    transform 1000ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 700ms ease;
}

body.front-page [data-reveal].is-visible {
  --reveal-y: 0px;
  opacity: 1;
}

.section-intro {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 36px;
}

.section-intro h2 {
  font-size: clamp(2.7rem, 5vw, 4.5rem);
}

.section-intro__support {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--subtle);
  font-size: 1rem;
  line-height: 1.7;
}

.works-grid,
.hub-grid,
.info-grid {
  display: grid;
  gap: 24px;
}

.works-grid,
.hub-grid:not([data-hub-track]) {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.experience-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-left: 214px;
}

.experience-hub-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(30, 26, 22, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.44);
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.experience-hub-card:hover,
.experience-hub-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(30, 26, 22, 0.24);
  background: rgba(255, 255, 255, 0.72);
}

.experience-hub-card__eyebrow {
  color: rgba(30, 26, 22, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-hub-card h3 {
  margin: 0;
  font-family: "Pretendard", "Manrope", sans-serif;
  font-size: clamp(1.7rem, 2.2vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.experience-hub-card p {
  margin: 0;
  color: var(--subtle);
  font-size: 1rem;
  line-height: 1.7;
}

.hub-carousel {
  display: grid;
  gap: 22px;
}

.hub-carousel__viewport {
  overflow: hidden;
}

.hub-carousel--strip .hub-carousel__viewport {
  overflow: hidden;
}

.hub-carousel--strip .hub-grid[data-hub-track] {
  display: flex;
  width: 100%;
  max-width: 100%;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  touch-action: pan-x;
}

.hub-carousel--strip .hub-grid[data-hub-track]::-webkit-scrollbar {
  display: none;
}

.hub-carousel--strip .hub-grid[data-hub-track].is-dragging {
  cursor: grabbing;
}

.hub-carousel--strip .hub-grid[data-hub-track].is-dragging .article-card {
  pointer-events: none;
}

.hub-carousel--strip .article-card {
  flex: 0 0 clamp(260px, 24vw, 360px);
}

.hub-carousel--strip .article-card__image {
  height: clamp(240px, 22vw, 320px);
}

.hub-grid[data-hub-track] {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (24px * 3)) / 4);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hub-grid[data-hub-track]::-webkit-scrollbar {
  display: none;
}

.hub-grid[data-hub-track] .article-card {
  min-width: 0;
  scroll-snap-align: start;
}

.hub-carousel__footer {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hub-carousel__progress {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(30, 26, 22, 0.12);
  overflow: hidden;
}

.hub-carousel__progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #1e1a16;
  transform-origin: left center;
  transition: transform 280ms ease, width 280ms ease;
}

.hub-carousel__buttons {
  display: flex;
  gap: 10px;
}

.hub-carousel__button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(30, 26, 22, 0.14);
  border-radius: 50%;
  color: #1e1a16;
  background: rgba(255, 255, 255, 0.48);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform 220ms ease, opacity 220ms ease, border-color 220ms ease;
}

.hub-carousel__button:hover,
.hub-carousel__button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(30, 26, 22, 0.3);
}

.hub-carousel__button:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  transform: translate3d(0, calc(var(--reveal-y) + var(--parallax-y)), 0);
  opacity: 0;
  transition:
    transform 850ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 650ms ease;
}

.article-card.is-visible {
  --reveal-y: 0px;
  opacity: 1;
}

.article-card__image {
  height: 430px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(42, 31, 21, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, filter 240ms ease;
}

.article-card__image--align-left {
  object-position: left center;
}

.article-card:hover .article-card__image,
.article-card:focus-visible .article-card__image {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 28px 52px rgba(42, 31, 21, 0.13);
  filter: saturate(1.04) contrast(1.02);
  animation: imageRipple 1300ms ease-in-out infinite;
}

.works-section .article-card:hover .article-card__image,
.works-section .article-card:focus-visible .article-card__image {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(42, 31, 21, 0.12);
  filter: none;
  animation: none;
}

@keyframes imageRipple {
  0% {
    transform: translateY(-4px) scale(1.015) perspective(900px) rotateX(0deg) rotateY(0deg) skewX(0deg);
  }

  25% {
    transform: translateY(-5px) scale(1.02) perspective(900px) rotateX(0.8deg) rotateY(-1.8deg) skewX(-0.8deg);
  }

  50% {
    transform: translateY(-4px) scale(1.017) perspective(900px) rotateX(-0.6deg) rotateY(1.5deg) skewX(0.7deg);
  }

  75% {
    transform: translateY(-5px) scale(1.02) perspective(900px) rotateX(0.7deg) rotateY(-1deg) skewX(-0.5deg);
  }

  100% {
    transform: translateY(-4px) scale(1.015) perspective(900px) rotateX(0deg) rotateY(0deg) skewX(0deg);
  }
}

.article-card h3,
.info-grid h3 {
  margin: 0;
  font-family: "Pretendard", "Manrope", sans-serif;
  font-size: var(--article-card-title-size, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
  word-break: keep-all;
}

.article-card__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
}

.works-card .article-card__title-row {
  gap: 8px 12px;
}

.works-card h3 {
  font-size: clamp(1.62rem, 2.43vw, 2.03rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.article-card p,
.about-panel p,
.info-grid p {
  margin: 0;
  color: var(--subtle);
}

.article-card__subtitle {
  margin: 6px 0 0;
  color: #5e554d;
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.article-card__subtitle--title {
  margin: 0;
  color: #3f3832;
  font-size: clamp(1.35rem, 1.95vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.works-card .article-card__subtitle--title {
  font-size: clamp(1.2rem, 1.85vw, 1.5rem);
  line-height: 1.18;
  letter-spacing: -0.028em;
}

.article-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-card__tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(30, 26, 22, 0.2);
  border-radius: 999px;
  color: var(--subtle);
  font-size: 0.88rem;
  font-weight: 700;
}

.trip-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  justify-items: start;
  padding: 40px;
  overflow: hidden;
}

.trip-copy {
  width: 100%;
  padding: 16px 0 0;
  text-align: center;
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

.trip-copy h2 {
  font-size: clamp(2.24rem, 4.48vw, 3.84rem);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.trip-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  margin-right: auto;
  margin-left: auto;
  color: rgba(28, 65, 96, 0.86);
}

.trip-copy p.trip-copy__subtitle {
  color: var(--text);
  font-size: clamp(2.24rem, 4.48vw, 3.84rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.trip-copy__body {
  font-size: 1.06rem;
  line-height: 1.8;
  letter-spacing: -0.01em;
}

.trip-copy__body--en {
  color: rgba(28, 65, 96, 0.72);
}

.trip-copy .section-label {
  display: block;
  text-align: left;
  margin: 0;
}

.trip-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.trip-stats div {
  min-width: 130px;
  padding: 18px 20px;
  border: 1px solid rgba(28, 65, 96, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.28);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.trip-stats strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.trip-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(28, 65, 96, 0.84);
  font-size: 0.94rem;
}

.trip-map-card {
  position: relative;
  width: min(100%, 920px);
  display: grid;
  justify-self: center;
  place-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: transform;
}

.trip-globe-webgl {
  width: min(72vw, 540px);
  height: min(72vw, 540px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.15), rgba(196,221,241,0.08) 45%, rgba(79,119,154,0.04) 100%);
  box-shadow: 0 28px 70px rgba(28, 65, 96, 0.22);
  outline: none;
}

.trip-globe-legend {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.trip-globe-legend__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  color: rgba(28, 65, 96, 0.65);
  letter-spacing: 0.01em;
}

.trip-globe-legend__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.trip-globe-legend__dot--fieldtrip {
  background: #f2a17c;
}

.trip-globe-legend__dot--event {
  background: #ffcf70;
}

.about-section {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.about-panel {
  padding: 18px 10px 18px 4px;
}

.about-panel h2 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
}

.about-panel p {
  max-width: 600px;
  margin-top: 22px;
}

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

.info-grid article {
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(245,239,231,0.7));
}

.article-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.article-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.article-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 15, 11, 0.38);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header,
  .hub-carousel__button,
  .trip-stats div {
    background: rgba(244, 239, 232, 0.94);
  }

  .slider-button {
    background: rgba(30, 26, 22, 0.4);
  }

  .article-modal__backdrop {
    background: rgba(19, 15, 11, 0.55);
  }
}

@supports not (aspect-ratio: 1) {
  .about-document__image,
  .trip-globe-webgl {
    width: 320px;
    height: 320px;
  }

  .about-document__image {
    max-width: min(50vw, 420px);
  }
}

.article-modal__panel {
  position: relative;
  z-index: 1;
  overflow: auto;
  max-width: 1420px;
  width: 100%;
  max-height: calc(100vh - 40px);
  margin: 0 auto;
  padding: 38px 42px 42px;
  border-radius: 34px;
  background: #faf7f1;
  box-shadow: 0 40px 90px rgba(18, 13, 10, 0.22);
}

.article-modal__close {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 1px solid rgba(30, 26, 22, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  font-size: 1.7rem;
  cursor: pointer;
}

.article-modal__head {
  max-width: 1080px;
  padding-right: 80px;
}

.article-modal__kicker {
  margin: 18px 0 14px;
  font-weight: 800;
}

.article-modal__title {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.article-modal__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.article-meta-item span,
.article-share > span,
.article-sidebar__block span {
  display: block;
  margin-bottom: 14px;
  color: #b3aca2;
  font-weight: 800;
}

.article-meta-item strong {
  font-family: "Pretendard", "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.article-share {
  justify-self: end;
}

.article-share__buttons {
  display: flex;
  gap: 12px;
}

.share-button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #ebe5db;
  color: #6d635b;
  font-weight: 800;
  cursor: pointer;
}

.article-modal__body {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 48px;
  margin-top: 32px;
}

.article-sidebar {
  padding-top: 8px;
}

.article-sidebar__block + .article-sidebar__block {
  margin-top: 38px;
}

.article-sidebar__block p {
  margin: 0;
  color: #3b342e;
  line-height: 1.7;
  white-space: pre-line;
}

.article-summary {
  margin: 0 0 44px;
  max-width: 980px;
  font-family: "Pretendard", "Manrope", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.article-hero-image {
  height: min(54vw, 700px);
  border-radius: 20px;
  object-fit: cover;
}

.article-paragraphs {
  display: grid;
  gap: 18px;
  max-width: 900px;
  margin-top: 28px;
}

.article-paragraphs p {
  margin: 0;
  color: #3f3832;
  font-size: 1.08rem;
  line-height: 1.8;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
  gap: 28px;
  max-width: 1380px;
  margin: 34px auto 0;
  padding: 36px 4px 24px;
  border-top: 1px solid rgba(30, 26, 22, 0.12);
}

.site-footer__lead {
  max-width: 760px;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  gap: 10px;
}

.site-footer__meta {
  display: grid;
  grid-template-rows: auto auto;
  justify-items: end;
  align-content: start;
  gap: 1px;
}

.footer-logo-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;
}

.footer-copyright {
  text-align: right;
  color: #9f968d;
  font-size: 0.78rem;
  line-height: 1.6;
}

.footer-kicker,
.footer-heading,
.footer-column p,
.footer-column a,
.footer-title {
  margin: 0;
}

.footer-kicker,
.footer-heading {
  color: #9f968d;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-title {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0;
  max-width: 420px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer__meta .footer-column {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.site-footer__meta .footer-column p:last-child {
  white-space: nowrap;
}

.footer-logo-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  color: #6f655d;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-logo-link::before {
  content: "";
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.footer-logo-link[href^="mailto:"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e1a16' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2' ry='2'/%3E%3Cpath d='M3 7l9 6 9-6'/%3E%3C/svg%3E");
}

.footer-logo-link[href*="linkedin.com"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231e1a16'%3E%3Cpath d='M5.5 8.5H2.5V21h3V8.5zM4 3a1.75 1.75 0 100 3.5A1.75 1.75 0 004 3zm6 5.5H7.1V21h2.9v-6.2c0-1.7.3-3.4 2.4-3.4 2.1 0 2.1 2 2.1 3.5V21h2.9v-6.7c0-3.3-.7-5.8-4.5-5.8-1.8 0-3 .9-3.5 1.8h-.1V8.5z'/%3E%3C/svg%3E");
}

.footer-logo-link[href*="instagram.com"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e1a16' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='5' ry='5'/%3E%3Ccircle cx='12' cy='12' r='4.2'/%3E%3Ccircle cx='17.4' cy='6.6' r='1' fill='%231e1a16' stroke='none'/%3E%3C/svg%3E");
}

.footer-logo-link:hover,
.footer-logo-link:focus-visible {
  opacity: 0.55;
  transform: translateY(-1px);
}

.footer-column p,
.footer-column a {
  color: var(--subtle);
  font-size: 0.98rem;
  line-height: 1.5;
}

.footer-column a {
  width: fit-content;
  transition: opacity 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  opacity: 0.65;
}

.article-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 8px 0 40px;
}

.article-page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--subtle);
  font-size: 0.96rem;
  font-weight: 700;
}

.article-page__header {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.article-page__kicker {
  margin: 0;
  color: #8d8378;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-page__title {
  margin: 0;
  max-width: 960px;
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.article-page__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 16px;
  max-width: 960px;
}

.article-page__subtitle {
  margin: 0;
  color: #3f3832;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.article-page__subtitle--stacked {
  margin-top: 4px;
  max-width: 960px;
  line-height: 1.45;
}

.article-page__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 24px 0 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-page__meta-label {
  display: block;
  margin-bottom: 10px;
  color: #b3aca2;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-page__meta-value {
  margin: 0;
  color: #2c2622;
  font-size: 1rem;
  line-height: 1.7;
}

.article-page__meta-value a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.article-page__hero {
  margin: 34px 0 28px;
}

.article-page__hero img,
.article-page__hero video,
.article-page__figure img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(42, 31, 21, 0.1);
}

.article-page__hero figcaption,
.article-page__figure figcaption {
  margin-top: 12px;
  color: #8d8378;
  font-size: 0.92rem;
  line-height: 1.5;
}

.article-page__summary {
  max-width: 920px;
  margin: 0 0 42px;
  font-size: clamp(1.2rem, 2.25vw, 1.875rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.article-page__summary--bilingual {
  display: grid;
  gap: 18px;
  font-size: clamp(0.945rem, 1.575vw, 1.365rem);
  line-height: 1.4;
}

.article-page__summary--bilingual p {
  margin: 0;
}

.article-page__hero img {
  border-radius: 0;
}

.article-page__hero video {
  display: block;
  border-radius: 0;
}

.article-card video.article-card__image {
  display: block;
  width: 100%;
}

.article-page__section {
  margin-top: 46px;
}

.article-page__section h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.article-page__body {
  display: grid;
  gap: 18px;
}

.article-page__body p {
  margin: 0;
  color: #3f3832;
  font-size: 1.08rem;
  line-height: 1.9;
}

.article-page__body .article-page__body-emphasis {
  font-size: 1.188rem;
  font-weight: 800;
}

.article-page__series-link {
  display: inline-block;
  padding: 0.08em 0.28em;
  border-radius: 0.4em;
  transition: transform 180ms ease, color 180ms ease;
}

.article-page__series-link:hover,
.article-page__series-link:focus-visible {
  background: rgba(30, 26, 22, 0.08);
  transform: translateY(-2px);
}

.article-page__credits .article-page__body {
  gap: 2px;
}

.article-page__credits .article-page__body p {
  line-height: 1.3;
}

.article-page__note {
  padding: 28px 30px;
  border: 1px solid rgba(95, 80, 64, 0.14);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(250, 247, 241, 0.96), rgba(245, 239, 231, 0.92));
}

.article-page__note-kicker {
  margin: 0 0 10px;
  color: #8d8378;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-page__note h2 {
  margin: 0 0 18px;
}

.article-page__note h2 span {
  font-size: 0.8em;
}

.article-page__figure {
  margin: 30px 0 10px;
}

.article-page__figure--half {
  width: min(50%, 420px);
  margin-left: auto;
  margin-right: auto;
}

.article-page__figure--seventy {
  width: min(70%, 760px);
  margin-left: auto;
  margin-right: auto;
}

.article-page__figure--square img {
  border-radius: 0;
}

.article-page--chosimheon .article-page__title {
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.article-page--chosimheon .article-page__title span {
  font-size: 0.8em;
}

.article-page--jeju-sprint .article-page__subtitle {
  font-size: clamp(1.3rem, 2.1vw, 1.65rem);
}

.article-page--arte-placebased .article-page__hero {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.article-page--chosimheon .article-page__section h2 {
  font-size: 28px;
}

.article-page--chosimheon .article-page__hero {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
}

.article-page--chosimheon .article-page__figure,
.article-page--chosimheon .article-page__gallery {
  margin-left: auto;
  margin-right: auto;
}

.article-page--chosimheon .article-page__gallery {
  margin-bottom: 64px;
}

.article-page--chosimheon .article-page__credits .article-page__body {
  gap: 9px;
}

.article-page--chosimheon .article-page__credits .article-page__body p {
  font-size: 15px;
  line-height: 1.2;
}

.article-page--chosimheon .article-page__credits .article-page__credits-title {
  font-size: 11px;
  font-weight: 800;
}

.article-page--chosimheon .article-page__credits .article-page__body strong {
  font-weight: 800;
}

.article-page--work-archive .article-page__summary {
  max-width: 920px;
  margin: 0 auto 42px;
  padding: 30px 34px;
  border: 1px solid rgba(95, 80, 64, 0.14);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(250, 247, 241, 0.96), rgba(245, 239, 231, 0.92));
  box-shadow: 0 14px 32px rgba(42, 31, 21, 0.04);
  font-size: 1.08rem;
  line-height: 1.9;
  letter-spacing: 0;
  text-align: left;
}

.article-page--work-archive .article-page__summary--bilingual {
  display: grid;
  gap: 24px;
  font-size: 1.08rem;
  line-height: 1.9;
  letter-spacing: 0;
  justify-items: stretch;
}

.article-page--work-archive .article-page__summary p,
.article-page--work-archive .article-page__summary--bilingual p {
  margin: 0;
}

.article-page--work-archive .article-page__section h2 {
  font-size: 28px;
}

.article-page--work-archive .article-page__credits .article-page__body {
  gap: 9px;
}

.article-page--work-archive .article-page__credits .article-page__body p {
  font-size: 15px;
  line-height: 1.2;
}

.article-page--work-archive .article-page__credits .article-page__body strong {
  font-weight: 800;
}

.article-page__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 14px;
}

.article-page__gallery--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}



.article-page__gallery--seven {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.article-page__gallery figure {
  margin: 0;
}

.article-page__gallery figure:first-child:last-child {
  grid-column: 1 / -1;
}

.article-page__gallery img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(42, 31, 21, 0.08);
}

.article-page__gallery figcaption {
  margin-top: 10px;
  color: #8d8378;
  font-size: 0.88rem;
  line-height: 1.45;
}

.hub-page {
  gap: 26px;
}

.hub-landing,
.hub-collection {
  padding: 34px 0 8px;
  border-top: 1px solid rgba(30, 26, 22, 0.12);
}

.hub-landing {
  padding: 56px 34px 42px;
  border-top: 0;
}

.hub-landing > .section-label,
.about-document__hero .section-label {
  color: var(--subtle);
}

.hub-landing h1 {
  margin: 0;
  max-width: 960px;
  font-size: clamp(3.1rem, 6vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hub-landing__lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--subtle);
  font-size: 1.06rem;
  line-height: 1.8;
}

.hub-landing__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hub-landing__links a,
.hub-collection__all {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 16px;
  border: 1px solid rgba(30, 26, 22, 0.16);
  border-radius: 999px;
  color: #433b35;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background-color 180ms ease, transform 180ms ease;
}

.hub-landing__links a:hover,
.hub-landing__links a:focus-visible,
.hub-collection__all:hover,
.hub-collection__all:focus-visible {
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.hub-collection__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 24px;
  align-items: end;
  margin-bottom: 26px;
}

.hub-collection__label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}

.hub-collection__label-row .section-label {
  margin: 0;
}

.hub-collection__label-note {
  margin: 0;
  color: #5e554d;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hub-collection__header h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hub-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.hub-page__grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hub-page .article-card {
  opacity: 1;
  transform: none;
  transition: transform 240ms ease, opacity 240ms ease;
}

.hub-page .article-card[hidden] {
  display: none;
}

.hub-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.hub-pagination[hidden] {
  display: none;
}

.hub-pagination__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
  color: #3c3733;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.hub-pagination__button:hover,
.hub-pagination__button:focus-visible {
  border-color: rgba(30, 26, 22, 0.16);
  background: rgba(255, 255, 255, 0.5);
}

.hub-pagination__button.is-active {
  border-color: rgba(30, 26, 22, 0.16);
  background: rgba(255, 255, 255, 0.78);
  color: #171411;
}

.hub-page__list {
  display: grid;
  border-top: 1px solid rgba(30, 26, 22, 0.12);
}

.hub-page__list-item {
  display: grid;
  gap: 12px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(30, 26, 22, 0.12);
  border-radius: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.hub-page__list-item h3 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hub-page__list-item p {
  margin: 0;
  max-width: 760px;
  color: var(--subtle);
  font-size: 1rem;
  line-height: 1.7;
}

.hub-page__list-item:hover h3,
.hub-page__list-item:focus-visible h3 {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.news-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.news-board__item {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 24px 24px 26px;
  border: 1px solid rgba(30, 26, 22, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 12px 34px rgba(40, 31, 23, 0.04);
  overflow: clip;
  text-align: left;
}

.news-board__item:hover,
.news-board__item:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.7);
}

.news-board__headline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.news-board__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(30, 26, 22, 0.12);
  border-radius: 999px;
  color: #4e463f;
  font-size: 1rem;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease;
}

.news-board__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.news-board__meta time {
  color: #6a6058;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.news-board__item h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.news-board__item p {
  margin: 0;
  color: var(--subtle);
  font-size: 0.98rem;
  line-height: 1.72;
}

.news-board__lede {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .site-header,
  .section-intro,
  .detail-hero,
  .about-document__hero,
  .about-document__section,
  .trip-section,
  .about-section,
  .works-grid,
  .hub-grid:not([data-hub-track]),
  .info-grid,
  .detail-grid,
  .article-modal__meta,
  .article-modal__body {
    grid-template-columns: 1fr;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    border-radius: 0;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    min-width: 0;
  }

  .contact-button {
    justify-self: end;
    white-space: nowrap;
  }

  .article-card__image {
    min-height: 360px;
    height: 360px;
  }

  .article-share {
    justify-self: start;
  }

  .article-page__meta,
  .hub-collection__header,
  .article-page__gallery,
  .article-page__gallery--two,
  .article-page__gallery--seven {
    grid-template-columns: 1fr;
  }

  .hub-page__grid,
  .hub-page__grid--compact {
    grid-template-columns: 1fr;
  }

  .experience-hub-grid {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .manifesto-section {
    gap: 22px;
  }

  .manifesto-section__copy {
    margin-left: 0;
  }

  .manifesto-section__copy h2 {
    padding-left: 0;
  }

  .manifesto-section__copy p {
    padding-left: 0;
  }

  .hub-grid[data-hub-track] {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

  .hub-carousel--strip .article-card {
    flex-basis: min(46vw, 320px);
  }

  .works-toolbar,
  .works-archive__heading {
    flex-direction: column;
    align-items: start;
  }

  .works-toolbar__meta {
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }

  .about-document__hero,
  .about-document__section {
    gap: 28px;
  }

  .about-document__image {
    max-width: 420px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 14px;
  }

  .site-header {
    position: static;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    padding: 20px;
    margin: 0 -14px 18px;
  }

  body.front-page .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: 0;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .site-nav {
    grid-column: 1;
    grid-row: 2;
    gap: 14px 20px;
    font-size: 0.94rem;
    align-items: center;
  }

  .contact-button {
    grid-column: 2;
    grid-row: 2;
    width: fit-content;
    justify-self: end;
    align-self: center;
    white-space: nowrap;
    padding: 11px 19px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: 84vh;
    height: 84vh;
  }

  body.front-page .hero {
    width: calc(100vw - 28px);
    margin-left: calc(50% - 50vw + 14px);
    margin-right: calc(50% - 50vw + 14px);
    min-height: 100vh;
    min-height: 100svh;
    height: 100vh;
    height: 100svh;
  }

  .front-page__content {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    padding-top: 0;
  }

  body.front-page .manifesto-section {
    margin-top: 0;
    padding-top: 34px;
  }

  .slide-copy {
    right: 24px;
    left: 24px;
    top: 132px;
    bottom: auto;
    max-width: min(78vw, 360px);
  }

  .section-intro h2,
  .trip-copy h2,
  .trip-copy p.trip-copy__subtitle,
  .about-panel h2,
  .about-document__copy h1 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .manifesto-section__copy h2 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    line-height: 1.152;
  }

  .manifesto-section__copy p {
    font-size: clamp(1.8rem, 7vw, 3.125rem);
    line-height: 1.2;
  }

  .slide-copy h1 {
    font-size: clamp(1.45rem, 6.4vw, 2rem);
    line-height: 1.25;
  }

  .mobile-linebreak {
    display: block;
  }

  .mobile-br {
    display: inline;
  }

  .slide-copy p:last-child {
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .manifesto-section {
    padding: 34px 22px 28px;
    gap: 18px;
  }

  .slider-controls {
    right: 24px;
    bottom: 72px;
    left: 24px;
  }

  .hub-grid[data-hub-track] {
    grid-auto-columns: 100%;
  }

  .experience-hub-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .experience-hub-footer {
    flex-direction: column;
    align-items: start;
    gap: 10px;
    padding-left: 0;
  }

  .hub-carousel--strip .hub-grid[data-hub-track] {
    gap: 18px;
  }

  .hub-carousel--strip .article-card {
    flex-basis: 78vw;
  }

  .hub-carousel__footer {
    gap: 14px;
  }

  .hub-carousel__button {
    width: 46px;
    height: 46px;
  }

  .works-section,
  .hub-section,
  .about-section,
  .trip-section {
    padding: 28px 20px;
  }

  .about-document__hero,
  .about-document__section {
    padding: 34px 0;
  }

  .about-document__hero {
    justify-items: center;
  }

  .about-document__copy {
    width: 100%;
  }

  .about-document__copy h1 {
    font-size: clamp(1.8rem, 7.2vw, 2.35rem);
    line-height: 1;
    letter-spacing: -0.045em;
    white-space: nowrap;
  }

  .about-document__lead {
    font-size: 1.08rem;
  }

  .about-document__image {
    display: block;
    justify-self: center;
    max-width: 320px;
    margin: 0 auto;
    transform: none;
  }

  .article-card h3,
  .info-grid h3 {
    font-size: 1.7rem;
  }

  .works-grid--archive {
    grid-template-columns: 1fr;
  }

  .works-filter-groups {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .works-filter-group {
    min-width: 0;
  }

  .works-toolbar__meta {
    flex-direction: column;
    align-items: stretch;
  }

  .works-sort,
  .works-clear {
    width: 100%;
  }

  .works-card__meta {
    flex-direction: column;
    align-items: start;
    gap: 6px;
  }

  .info-grid article {
    min-height: auto;
    padding: 22px;
  }

  .article-modal {
    padding: 10px;
  }

  .article-modal__panel {
    max-height: calc(100vh - 20px);
    padding: 22px 18px 24px;
  }

  .article-modal__head {
    padding-right: 0;
  }

  .article-modal__title {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  .article-summary {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }

  .article-page__title {
    font-size: clamp(1.15rem, 5vw, 1.75rem);
  }

  .article-page__title-row {
    display: grid;
    gap: 8px;
  }

  .article-page--jeju-sprint .article-page__subtitle {
    font-size: clamp(1.05rem, 4.5vw, 1.32rem);
  }

  .article-page__summary {
    font-size: clamp(1.05rem, 4.5vw, 1.5rem);
  }

  .article-page--chosimheon .article-page__hero {
    max-width: 100%;
  }

  .hub-landing h1 {
    font-size: clamp(3.1rem, 6vw, 5.4rem);
  }

  .hub-page__list-item h3 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .news-board {
    gap: 16px;
  }

  .news-board__item {
    padding: 20px 18px 22px;
    border-radius: 22px;
  }

  .news-board__item h3 {
    font-size: clamp(1.35rem, 6vw, 1.8rem);
  }

  .news-board__headline {
    gap: 14px;
  }

  .news-board__icon {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .hub-pagination {
    gap: 10px;
    margin-top: 22px;
  }

  .hub-pagination__button {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
  }

  .article-hero-image {
    height: 320px;
  }

  .trip-globe-webgl {
    width: min(78vw, 420px);
    height: min(78vw, 420px);
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 10px;
    justify-items: center;
  }

  .site-footer__lead,
  .site-footer__meta {
    justify-items: center;
    gap: 14px;
    text-align: center;
  }

  .site-footer__meta {
    gap: 3px;
  }

  .footer-logo-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .footer-logo-link {
    width: 38px;
    height: 38px;
  }

  .footer-logo-link::before {
    width: 24px;
    height: 24px;
  }

  .footer-copyright {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .article-card,
  .hero,
  .slide-copy,
  .trip-copy,
  .trip-map-card {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
