:root {
  --bg: #f5f3ee;
  --ink: #1d1d1b;
  --muted: #66625a;
  --line: #d9d4ca;
  --line-dark: #bfb8aa;
  --black: #070706;
  --accent: #c58b2b;
  --page-x: clamp(20px, 3vw, 44px);
  --max: 1440px;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --sans: "IBM Plex Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", sans-serif;
  --display: "Space Grotesk", "IBM Plex Sans KR", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 18% 0%, rgba(255,255,255,.7), transparent 26rem), radial-gradient(circle at 88% 18%, rgba(255,255,255,.45), transparent 24rem), var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}
img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
.skip-link { position: absolute; left: -9999px; top: 16px; z-index: 99; background: var(--ink); color: var(--bg); padding: 8px 12px; }
.skip-link:focus { left: 16px; }
.site-shell { width: min(100%, var(--max)); margin: 0 auto; padding: 0 var(--page-x); }
.site-header { height: 78px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; position: relative; z-index: 20; }
.brand { width: fit-content; font-family: var(--display); line-height: .92; letter-spacing: -.04em; }
.brand__name { display: block; font-size: clamp(18px, 1.85vw, 24px); font-weight: 500; }
.brand__sub { display: block; margin-top: 6px; font-family: var(--mono); font-size: 10px; letter-spacing: .02em; }
.nav { display: flex; align-items: center; gap: clamp(36px, 5vw, 72px); font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .01em; }
.nav a { position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 1px; background: var(--ink); transition: width .25s ease; }
.nav a:hover::after { width: 100%; }
.menu-toggle { justify-self: end; width: 34px; height: 34px; border: 0; background: transparent; padding: 7px 4px; display: grid; gap: 4px; cursor: pointer; }
.menu-toggle span { display: block; height: 1.5px; background: var(--ink); }
.hero { min-height: 380px; height: clamp(380px, 58vw, 680px); position: relative; overflow: hidden; background: var(--black); }
.hero__video,
.hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__image { background-image: url("./assets/hero.jpg"); background-size: cover; background-position: center; transform: scale(1.01); }
.hero__video + .hero__image { display: none; }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.18) 45%, rgba(0,0,0,.08) 100%), linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.14)); }
.hero__content { position: relative; z-index: 2; min-height: 100%; display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 7vw, 92px) clamp(32px, 6vw, 64px); color: var(--bg); }
.hero h1 { margin: 0; font-family: var(--display); font-size: clamp(44px, 6.3vw, 84px); line-height: .98; font-weight: 400; letter-spacing: -.055em; text-transform: uppercase; }
.hero__label { width: fit-content; margin: 34px 0 0; padding: 4px 9px 5px; border: 1px solid rgba(245,243,238,.65); font-family: var(--mono); font-size: 11px; line-height: 1; letter-spacing: .03em; }
.arrow-link { display: inline-flex; align-items: center; width: fit-content; font-family: var(--mono); font-size: 28px; line-height: 1; }
.hero__arrow { margin-top: 34px; transition: transform .2s ease; }
.hero__arrow:hover { transform: translateX(6px); }
.meta-strip { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid var(--line); min-height: 72px; align-items: center; font-family: var(--mono); font-size: 12px; line-height: 1.25; letter-spacing: -.02em; }
.meta-strip p { margin: 0; display: flex; flex-direction: column; }
.meta-strip p:nth-child(2) { align-items: center; }
.meta-strip p:nth-child(3) { align-items: flex-end; }
.brand-story {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(64px, 8vw, 120px);
  align-items: start;
  padding: 40px clamp(40px, 5vw, 64px) 96px;
  border-bottom: 1px solid var(--line);
}

.brand-story__copy {
  max-width: 560px;
}

.brand-story__headline {
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  line-height: .9;
}

.brand-story__headline span {
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 96px);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.brand-story__copy p {
  margin: 0;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.9;
}

.brand-story__copy p + p {
  margin-top: 28px;
}

.brand-story__figure {
  margin: 64px 0 0;
  position: relative;
}

.brand-story__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.86) contrast(.96);
}
.space-gallery__controls {
  margin-top: 16px;
  justify-content: center;
}
/* SPACE Gallery */

.space-gallery{
  position:relative;
  overflow:hidden;
  background:none;
}

.space-gallery img{
  display:block;
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}

.space-gallery__controls{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:18px;
  margin-top:20px;
}

.space-gallery__controls button{
  width:42px;
  height:42px;

  display:flex;
  justify-content:center;
  align-items:center;

  border:1px solid #b9b0a3;
  border-radius:50%;

  background:#fff;

  color:#222;

  cursor:pointer;

  transition:.25s;
}

.space-gallery__controls button:hover{
  background:#222;
  color:#fff;
  border-color:#222;
}

.space-gallery__count{
  min-width:60px;
  text-align:center;
  font-size:13px;
  letter-spacing:.12em;
}
.brand-story__figure figcaption { position: absolute; right: -84px; top: 50%; transform: translateY(-50%); height: 76%; display: flex; flex-direction: column; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 11px; writing-mode: vertical-rl; letter-spacing: .03em; }
.brand-story__figure figcaption::before { content: ""; width: 1px; flex: 1; min-height: 96px; background: var(--line-dark); order: 2; }
.brand-story__figure figcaption::after { content: ""; width: 7px; height: 7px; background: var(--ink); border-radius: 50%; order: 3; }
.experience, .visit, .journal { border-bottom: 1px solid var(--line); }
.section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 32px; padding: 28px 0 24px; }
.section-head > div { display: flex; gap: 32px; align-items: baseline; }
.section-head h2, .visit h2 { margin: 0; font-family: var(--display); font-size: clamp(30px, 3.1vw, 43px); line-height: 1; font-weight: 400; letter-spacing: -.05em; }
.section-head p, .text-link { margin: 0; font-family: var(--mono); font-size: 12px; font-weight: 500; }
.text-link { display: inline-flex; gap: 18px; align-items: center; white-space: nowrap; }
.experience__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(26px, 2.4vw, 42px); padding-bottom: 52px; }
.card-no { display: block; font-family: var(--mono); font-size: 12px; margin-bottom: 5px; }
.experience-card h3 { margin: 0 0 12px; font-family: var(--display); font-size: clamp(22px, 2.1vw, 30px); font-weight: 400; letter-spacing: -.045em; }
.experience-card__media { position: relative; margin-bottom: 18px; overflow: hidden; background: rgba(0,0,0,.06); }
.experience-card__media img { aspect-ratio: 1.58 / 1; object-fit: cover; margin-bottom: 0; filter: saturate(.82) contrast(.96); }
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 1px solid rgba(245, 243, 238, 0.75);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.22);
  color: #f5f3ee;
  font-family: var(--mono);
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
}
.gallery-btn--prev { left: 12px; }
.gallery-btn--next { right: 12px; }
.experience-card__media:hover .gallery-btn { opacity: 1; }
.gallery-btn:focus-visible { opacity: 1; outline: 1px solid #f5f3ee; }
.gallery-btn:hover { background: rgba(0, 0, 0, 0.45); }
.gallery-count {
  position: absolute;
  right: 12px;
  bottom: 10px;
  padding: 3px 7px;
  background: rgba(0, 0, 0, 0.28);
  color: #f5f3ee;
  font-family: var(--mono);
  font-size: 10px;
}
.experience-card p { margin: 0 0 24px; min-height: 46px; font-size: 14px; line-height: 1.7; }
.experience-card a { font-size: 14px; display: inline-flex; gap: 18px; align-items: center; }
.visit { display: grid; grid-template-columns: 160px 1fr; }
.visit h2 { padding: 40px 0; }
.visit__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-left: 1px solid var(--line); }
.visit-card { position: relative; min-height: 190px; padding: 34px 28px 28px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.visit-card__icon { width: 31px; height: 31px; margin-bottom: 24px; }
.visit-card__icon svg { width: 100%; height: 100%; fill: none; stroke: var(--ink); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.visit-card strong { font-size: 22px; font-weight: 500; letter-spacing: -.04em; line-height: 1.2; }
.visit-card p { margin: 8px 0 0; font-size: 13px; line-height: 1.55; }
.visit-card__arrow { margin-top: auto; margin-left: auto; font-family: var(--mono); font-size: 24px; }
.journal { padding-bottom: 46px; }
.journal__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.journal-card { display: grid; grid-template-columns: 1fr 132px; min-height: 190px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.09); }
.journal-card__copy { padding: 22px 16px 16px; display: flex; flex-direction: column; }
.journal-card__copy span { font-family: var(--mono); font-size: 11px; margin-bottom: 20px; }
.journal-card__copy h3 { margin: 0; font-size: clamp(18px, 1.75vw, 24px); line-height: 1.38; font-weight: 500; letter-spacing: -.045em; }
.journal-card__copy time { margin-top: auto; font-family: var(--mono); font-size: 11px; }
.journal-card img { height: 100%; object-fit: cover; filter: saturate(.78) contrast(.97); }
.site-footer { min-height: 104px; padding: 30px 0 34px; display: grid; grid-template-columns: 1.25fr 1.25fr 1fr 1fr 1fr; gap: 36px; font-family: var(--mono); font-size: 11px; line-height: 1.45; }
.site-footer p { margin: 0; display: flex; flex-direction: column; }
.detail-page { min-height: calc(100vh - 78px); padding: clamp(80px, 12vw, 150px) 0; border-top: 1px solid var(--line); }
.detail-kicker { margin: 0 0 28px; font-family: var(--mono); font-size: 12px; }
.detail-page h1 { margin: 0 0 28px; max-width: 900px; font-family: var(--display); font-size: clamp(44px, 7vw, 92px); line-height: .98; font-weight: 400; letter-spacing: -.055em; }
.detail-page p:not(.detail-kicker) { max-width: 660px; margin: 0 0 48px; font-size: 18px; line-height: 1.8; }

@media (max-width: 980px) {
  .site-shell { padding: 0 18px; }
  .site-header { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .hero { height: 64vh; min-height: 480px; }
  .meta-strip, .brand-story, .visit, .site-footer { grid-template-columns: 1fr; }
  .meta-strip { gap: 16px; padding: 18px 0; }
  .meta-strip p:nth-child(2), .meta-strip p:nth-child(3) { align-items: flex-start; }
  .brand-story { padding: 46px 0; gap: 40px; }
  .brand-story__figure figcaption { display: none; }
  .experience__grid { grid-template-columns: repeat(2, 1fr); }
  .visit h2 { padding: 32px 0 18px; }
  .visit__grid { grid-template-columns: repeat(2, 1fr); border-left: 0; border-top: 1px solid var(--line); }
  .journal__grid { grid-template-columns: 1fr 1fr; }
  .site-footer { gap: 18px; }
}
@media (max-width: 640px) {
  body { font-size: 14px; }
  .site-header { height: 68px; }
  .brand__name { font-size: 18px; }
  .brand__sub { font-size: 9px; }
  .hero { height: 72vh; min-height: 420px; }
  .hero__content { padding: 34px 22px; justify-content: flex-end; }
  .hero h1 { font-size: clamp(42px, 14vw, 62px); }
  .brand-story__copy { font-size: 15px; }
  .section-head, .section-head > div { flex-direction: column; align-items: flex-start; gap: 12px; }
  .experience__grid, .visit__grid, .journal__grid { grid-template-columns: 1fr; }
  .journal-card { grid-template-columns: 1fr 118px; }
  .visit-card { border-right: 0; border-bottom: 1px solid var(--line); }
}
.brand-story__headline {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  line-height: .9;
}
.brand-story__headline span {
  font-family: var(--display);
  font-size: clamp(48px, 5.8vw, 88px);
  font-weight: 400;
  letter-spacing: -0.06em;
}
.experience-card__media img {
  transition: opacity 0.22s ease, transform 0.35s ease;
}

.experience-card__media.is-changing img {
  opacity: 0.35;
}