/* ============================================================
   셀러스코퍼레이션 — 공개 화면 스타일
   방향 문서: docs/design-direction.md

   기준: 옥스포드 화이트 종이 위에 잉크로 인쇄한 화면.
   한글은 마루 부리(MaruBuri) 400 하나만 쓰고, 강조는 굵기가 아니라
   크기·자간·색으로 만든다. 영문 워드마크와 숫자만 Cinzel 을 쓴다.
   사진은 화면 폭을 그대로 쓰고, 색은 사진이 맡는다. UI 는 물러선다.
   ============================================================ */

@font-face {
  font-family: 'Cinzel';
  src: url('../fonts/cinzel-latin.woff2') format('woff2');
  font-weight: 400 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+2000-206F, U+2122, U+2212, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cinzel';
  src: url('../fonts/cinzel-latin-ext.woff2') format('woff2');
  font-weight: 400 900;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+1E00-1E9F, U+2020, U+20A0-20AB;
}

/* 마루 부리(MaruBuri)는 조각 없이 파일 하나라 maruburi.css 에서
   따로 선언한다(layout.php 에서 먼저 읽는다). */

:root {
  /* 잉크
     고객이 보내 준 전화 아이콘에서 그대로 뽑은 색(#031936)을 본문 잉크로 쓴다.
     브랜드 남색(#16294A)보다 훨씬 짙어 거의 검정으로 읽히므로,
     색은 사진이 맡고 UI 는 물러선다는 이번 작업의 방향과 맞는다.
     남색은 세로 워드마크와 꼬리말 워드마크 두 곳에만 남겨 둔다.

     세 단계 모두 종이색 위에서 WCAG AA(4.5:1)를 넘긴다.
     옥스포드 화이트(#F9F8F4) 기준 — 잉크 16.5:1, 보조 7.6:1, 옅은 잉크 5.5:1
     가장 어두운 배경인 종이어두움(#EFEDE5) 기준 — 15.0:1, 6.9:1, 5.0:1 */
  --ink: #031936;
  --ink-soft: #4A5261;
  --ink-faint: #5F6474;

  /* 종이 — 고객 지정 옥스포드 화이트(#F9F8F4) 기준.
     이전(#F4F1EA)보다 밝고 노란기가 빠져 사진이 더 또렷하게 뜬다.
     파생 색도 같은 온도로 다시 잡았다. */
  --paper: #F9F8F4;
  --paper-light: #FDFDFA;
  --paper-dark: #EFEDE5;

  /* 선 */
  --line: #E3E1D9;
  --rule: #BEBBB0;

  /* 먹과 놋쇠 */
  --soot: #1A1A18;
  --soot-soft: #C2BCAE;
  --brass: #75643B;

  /* 브랜드 남색. 고객 시안의 색이라 없애지 않되, 세로 워드마크와
     꼬리말 워드마크 두 곳에만 쓴다. 종이 위 대비 13.6:1. */
  --navy: #16294A;

  --danger: #8C2F26;

  /* 폴백도 명조 계열로만 잡는다. 산세리프로 떨어지면 브랜드가 끊긴다.
     Nanum Myeongjo(맑은 환경), 바탕(윈도우), AppleMyungjo(맥) 순. */
  --serif-en: 'Cinzel', 'Times New Roman', serif;
  --serif: 'MaruBuri', 'Nanum Myeongjo', '바탕', Batang, AppleMyungjo, serif;

  --wrap: 1180px;
  --wordmark-col: 132px;
  /* 머리말은 낮게 둔다. 프리미엄 브랜드 화면은 머리말이 얇을수록
     그 아래 사진이 커진다. 워드마크 위치는 아래에서 되돌려 맞춘다. */
  --header-h: 72px;

  /* 느리게 멎는 이징. 모션 전반에 하나만 쓴다. */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* --------------------------------------------------------
     구버전 토큰 별칭.
     관리자 화면과 일부 뷰가 예전 이름을 쓰고 있어 남겨 둔다.
     새 코드에서는 위쪽 이름을 쓴다.
     -------------------------------------------------------- */
  --navy-deep: #0F1D36;
  --bg: var(--paper);
  --bg-sub: var(--paper-dark);
  --muted: var(--ink-soft);
  --white: var(--paper-light);
  --sans: var(--serif);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  line-height: 2;
  word-break: keep-all;
  overflow-wrap: break-word;
  /* 명조는 가짜 굵기를 만들면 탁해진다. 합성을 끈다. */
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

/* 종이 결. 아주 옅은 그레인만 얹어 인쇄물 느낌을 만든다. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

strong {
  font-weight: 400;
  color: var(--ink);
  box-shadow: inset 0 -1px 0 var(--rule);
}

::selection { background: var(--ink); color: var(--paper-light); }

/* ============================================================
   모션 기본기
   초기 숨김은 head 의 인라인 스크립트가 html.js 를 붙였을 때만
   적용한다. 스크립트가 실패하면 html.motion-off 가 붙어 원상복구된다.
   ============================================================ */

@media (prefers-reduced-motion: no-preference) {
  /* 글자 블록: 아주 짧게 올라오며 나타난다 */
  html.js:not(.motion-off) [data-reveal] {
    opacity: 0;
    transform: translateY(14px);
  }

  [data-reveal] {
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
    transition-delay: var(--d, 0ms);
  }

  html.js [data-reveal].is-in { opacity: 1; transform: none; }

  /* 이미지: 아래에서 위로 마스크가 걷히며 드러난다.
     주의 — clip-path 를 관측 대상 자체에 걸면 IntersectionObserver 가
     보이는 면적을 0 으로 계산해 영영 나타나지 않는다.
     그래서 관측 대상은 투명도만 다루고, 잘라내기는 안쪽 요소에 건다. */
  html.js:not(.motion-off) [data-reveal='img'] { transform: none; }

  html.js:not(.motion-off) [data-reveal='img'] .g-thumb,
  html.js:not(.motion-off) [data-reveal='img'] > .fig-media {
    clip-path: inset(0 0 100% 0);
  }

  html.js:not(.motion-off) [data-reveal='img'] > .fig-media { transform: scale(1.05); }

  [data-reveal='img'] .g-thumb,
  [data-reveal='img'] > .fig-media {
    transition: clip-path 1.15s var(--ease), transform 1.45s var(--ease);
    transition-delay: var(--d, 0ms);
  }

  html.js [data-reveal='img'].is-in .g-thumb,
  html.js [data-reveal='img'].is-in > .fig-media {
    clip-path: inset(0 0 0 0);
    transform: none;
  }
}

/* ============================================================
   머리말
   ============================================================ */

.site-header {
  position: relative;
  z-index: 30;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 30px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  /* 로고를 곱하기로 얹으려면 이 배경이 blend 대상 그룹 안에 있어야 한다.
     isolation 이 없으면 캔버스 배경과 섞이려다 아무 효과도 나지 않는다. */
  isolation: isolate;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.5s var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current='page']::after { width: 100%; }

/* 로고는 흰 바탕 위 잉크 드로잉이다.
   곱하기로 얹어 흰 사각형을 없애고 종이에 인쇄된 것처럼 보이게 한다. */
.site-logo img {
  width: 62px;
  mix-blend-mode: multiply;
}

/* ============================================================
   세로 워드마크 — 화면 왼쪽을 지키는 축
   ============================================================ */

/* 첫 화면에 머물다 스크롤과 함께 지나간다.
   고정(fixed)으로 두면 화면 폭을 꽉 채운 사진 위에 남색 글자가 계속 겹쳐
   사진을 가린다. 문서 위쪽에 붙여 두면 히어로에서 보이는 모습은 그대로이고,
   아래로 내려가면 사진이 온전히 화면을 차지한다.
   위치 기준을 문서 원점으로 잡기 위해 위치 지정된 조상을 두지 않는다. */
.wordmark {
  position: absolute;
  /* 머리말을 92px 에서 72px 로 낮췄지만, 워드마크가 문서 위에서 떨어진
     거리(136px)는 고객 시안 그대로 유지한다. */
  top: calc(var(--header-h) + 64px);
  left: 0;
  width: var(--wordmark-col);
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 20;
}

/* 홈은 고객 시안 그대로 크게 둔다.
   다른 화면은 첫 블록부터 사진이 화면 폭을 쓰기 때문에, 같은 워드마크를
   작게 써서 사진 위를 덮지 않게 한다. 자리(좌측 끝)와 색은 그대로다. */
.wordmark span {
  font-family: var(--serif-en);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1;
  letter-spacing: 0.16em;
  /* 브랜드 남색을 쓰는 두 곳 중 하나 */
  color: var(--navy);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  /* 고객 요청(2026-07-29): S 가 아래, O 가 위로 오도록 아래에서 위로 읽히게 한다.
     의미상으로는 writing-mode: sideways-lr 이 맞지만 크로미움 계열 지원이
     불안정해 운영에 쓸 수 없다. 널리 지원되는 vertical-rl 에 180도 회전을 얹으면
     글자 하나하나는 책등 조판 그대로 서고 읽는 순서만 뒤집힌다.
     회전축이 상자 중심이라 화면에서 차지하는 자리와 크기는 회전 전과 같다. */
  transform: rotate(180deg);
  transform-origin: center;
  /* 자간은 글자 뒤(아래)에 붙는다. 뒤집으면 그 여백이 위로 올라오므로
     같은 만큼 끌어올려 회전 전과 같은 자리에서 시작하게 맞춘다. */
  margin-top: -0.16em;
}

body.is-home .wordmark span { font-size: clamp(46px, 6.4vw, 88px); }

.page {
  padding-left: var(--wordmark-col);
  min-height: calc(100vh - var(--header-h));
}

/* 워드마크가 지나갈 자리.
   홈은 히어로가 첫 화면을 통째로 쓰므로 저절로 비켜 가지만, 다른 화면은
   머리글 바로 다음이 화면 폭을 쓰는 사진이라 그대로 두면 그 위에 겹친다.
   첫 구간에 워드마크가 끝날 만큼의 높이를 확보한다. */
.intro-clear {
  /* 워드마크 아래끝(문서 기준 약 487px)에서 머리말 높이를 빼고 여유를 더한 값 */
  min-height: 470px;
  display: grid;
  align-content: center;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 48px;
}

.wrap--narrow { max-width: 880px; }
.wrap--text { max-width: 760px; }

/* ============================================================
   히어로 — 이 사이트에서 유일하게 크게 움직이는 곳
   크리스탈 새가 몸통에서 양 날개 쪽으로 열리며 나타난다.
   ============================================================ */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  /* body 배경은 캔버스로 넘어가 버려서 곱하기 대상이 되지 못한다.
     크리스탈이 실제로 종이와 섞이도록 여기서 배경을 한 번 더 깐다. */
  background: var(--paper);
  isolation: isolate;
}

.hero-crystal {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../img/hero-bg.webp');
  background-size: contain;
  background-position: 64% 44%;
  background-repeat: no-repeat;
  /* 사진 배경이 흰색이라 그대로 두면 종이 위에 흰 사각형이 뜬다.
     곱하기로 얹으면 흰 부분이 사라지고 크리스탈만 종이에 남는다. */
  mix-blend-mode: multiply;
}

@media (prefers-reduced-motion: no-preference) {
  html.js:not(.motion-off) .hero-crystal {
    /* 몸통 위치(가로 64%)에서 폭 0 으로 시작한다. */
    clip-path: inset(0 36% 0 64%);
  }
  .hero-crystal {
    transition: clip-path 1.9s var(--ease) 0.15s;
  }
  html.js .hero.is-ready .hero-crystal {
    clip-path: inset(0 0 0 0);
  }
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 48px 108px;
  max-width: 780px;
}

.hero-copy p {
  margin: 0;
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 2.15;
  letter-spacing: 0.005em;
  color: var(--ink);
}

/* 줄마다 시차를 둔다. br 을 그대로 두어 CSS 가 없어도 줄바꿈이 유지된다. */
.hero-line { display: inline-block; }

@media (prefers-reduced-motion: no-preference) {
  html.js:not(.motion-off) .hero-line {
    opacity: 0;
    transform: translateY(9px);
    /* 잉크가 종이에 스며들어 또렷해지는 느낌 */
    filter: blur(2.5px);
  }
  .hero-line {
    transition: opacity 1.1s var(--ease), transform 1.1s var(--ease),
                filter 1.1s var(--ease);
    transition-delay: calc(0.55s + var(--i, 0) * 0.13s);
  }
  html.js .hero.is-ready .hero-line {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

/* 워드마크는 홈에서만 아래에서 위로 번지듯 드러난다.
   가리개(mask)는 회전이 적용되기 전 상태에 걸리므로, 화면에서 아래에서 위로
   걷히게 하려면 회전 전 기준으로는 위에서 아래로 걷히도록 방향을 뒤집어야 한다.
   그래야 아래에 놓인 S 부터 읽는 순서대로 드러난다. */
@media (prefers-reduced-motion: no-preference) {
  html.js:not(.motion-off) body.is-home .wordmark span {
    -webkit-mask-image: linear-gradient(to bottom, #000 34%, transparent 62%);
            mask-image: linear-gradient(to bottom, #000 34%, transparent 62%);
    -webkit-mask-size: 100% 300%;
            mask-size: 100% 300%;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: 0 100%;
            mask-position: 0 100%;
    transition: -webkit-mask-position 1.8s var(--ease) 0.1s,
                        mask-position 1.8s var(--ease) 0.1s;
  }
  html.js body.is-home.is-ready .wordmark span {
    -webkit-mask-position: 0 0%;
            mask-position: 0 0%;
  }
}

/* ============================================================
   섹션 리듬 — 일부러 값을 다르게 둔다
   ============================================================ */

.s-tight  { padding: 56px 0; }
.s-mid    { padding: 96px 0; }
.s-wide   { padding: 128px 0; }
.s-open   { padding: 148px 0; }

.s-paper-dark { background: var(--paper-dark); }

/* 어두운 구간.
   목업 열 장 가운데 절반이 어두운 사진이라, 밝은 종이 위에 그대로 두면
   힘이 죽는다. 먹색 구간을 하나 만들어 그 사진들을 여기에 모은다.
   밝은 구간과 번갈아 나오는 것만으로 리듬이 생기므로 남발하지 않는다. */
.s-soot {
  background: var(--soot);
  color: var(--paper);
}
.s-soot .lead { color: var(--soot-soft); }
.s-soot .note { color: var(--soot-soft); }
.s-soot .title-xl,
.s-soot .title-lg,
.s-soot .title-md,
.s-soot .prose-close { color: var(--paper); }
.s-soot .prose p { color: var(--soot-soft); }


.soot-brand {
  margin: 0 0 40px;
  font-family: var(--serif-en);
  font-size: clamp(30px, 4.4vw, 60px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.24em;
  color: var(--paper);
}

/* 표제 */

.title-xl {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.62;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.title-lg {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 33px);
  line-height: 1.68;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.title-md {
  margin: 0;
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.75;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.lead {
  margin: 26px 0 0;
  max-width: 46em;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2.05;
}

.note {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
}

/* 우측으로 밀어 왼쪽을 비우는 비대칭 배치 */
.offset-right { margin-left: auto; max-width: 720px; }
.offset-left  { margin-right: auto; max-width: 720px; }

/* ============================================================
   버튼과 링크
   ============================================================ */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 38px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 15.5px;
  letter-spacing: 0.04em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.45s var(--ease-soft);
}

/* 배경이 왼쪽에서 오른쪽으로 채워진다. 튀어오르거나 그림자가 지지 않는다. */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.55s var(--ease);
}

.btn:hover::before,
.btn:focus-visible::before { transform: scaleX(1); transform-origin: left center; }
.btn:hover, .btn:focus-visible { color: var(--paper-light); }

/* 채워진 버튼. 평상시 잉크색이고 hover 시 먹색이 밀려 들어온다. */
.btn--solid { color: var(--paper-light); background: var(--ink); }
.btn--solid::before { background: var(--soot); }
.btn--solid:hover, .btn--solid:focus-visible { color: var(--paper-light); }

/* 먹색 구간에서는 명암을 뒤집는다. */
.s-soot .btn { border-color: var(--paper); color: var(--paper); }
.s-soot .btn::before { background: var(--paper); }
.s-soot .btn:hover,
.s-soot .btn:focus-visible { color: var(--soot); }

.btn--sm { min-height: 44px; padding: 0 22px; font-size: 14px; }
.btn--block { width: 100%; }

/* 구버전 클래스. 관리자 화면 마크업이 아직 쓴다. 기본 .btn 과 같은 외곽선 버튼이다. */
.btn--ghost { background: transparent; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}

.btn-row--far { margin-top: 84px; }
.btn-row--flush { margin-top: 0; }

/* 본문 안의 링크 — 밑줄이 좌에서 우로 그어진다 */
.link {
  position: relative;
  color: var(--ink);
  padding-bottom: 2px;
}
.link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.5s var(--ease);
}
.link:hover::after,
.link:focus-visible::after { width: 100%; }

/* ============================================================
   편집형 이미지 블록
   ============================================================ */

.fig { margin: 0; overflow: hidden; }

.fig-media {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* 화면 폭을 끝에서 끝까지 채우는 밴드. .bleed 와 함께 쓴다. */
.fig--band { width: 100%; }

.fig-media--band {
  aspect-ratio: 21 / 9;
  object-position: center 44%;
}

.fig-cap {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}

/* 사진 두 장을 맞붙여 놓되 세로로는 어긋나게 둔다.
   여백은 사진 바깥이 아니라 사진 안에 있다는 원칙이라 사이 간격을 두지 않는다.
   .bleed 와 함께 쓰면 왼쪽 끝에서 오른쪽 끝까지 사진만 남는다. */
.duo {
  display: grid;
  grid-template-columns: 1.34fr 1fr;
  gap: 0;
  align-items: start;
}
.duo > :nth-child(1) .fig-media { aspect-ratio: 3 / 2; }
.duo > :nth-child(2) { margin-top: 92px; }
.duo > :nth-child(2) .fig-media { aspect-ratio: 6 / 5; }

.duo-note {
  align-self: end;
  padding-bottom: 8px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 2.1;
}

/* 어긋남을 반대로 준 짝. 앞의 사진이 내려가고 뒤의 사진이 올라온다. */
.duo--flip { grid-template-columns: 1fr 1.34fr; }
.duo--flip > :nth-child(1) { margin-top: 92px; }
.duo--flip > :nth-child(1) .fig-media { aspect-ratio: 1 / 1; }
.duo--flip > :nth-child(2) { margin-top: 0; }
.duo--flip > :nth-child(2) .fig-media { aspect-ratio: 3 / 2; }

/* 사진 세 장을 맞붙여 한 줄로 놓고 가운데만 내려 어긋냄을 만든다.
   먹색 구간의 위쪽 경계에 붙여 쓴다. */
.trio {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  align-items: start;
}
.trio .fig-media { aspect-ratio: 3 / 2; }
.trio > :nth-child(2) { margin-top: 72px; }

/* 먹색 구간에서 사진 아래에 오는 글 블록 */
.soot-body { padding: 84px 0 92px; }

/* 사진 없이 글만 놓이는 먹색 구간은 위아래를 더 연다. */
.soot-body--tall { padding: 148px 0 156px; }

/* ============================================================
   갤러리 — 균일 격자를 쓰지 않는다
   12칸 위에 7/5, 5/7, 6/6 을 번갈아 얹고 세로 위치를 어긋나게 한다.
   게시물 수가 몇 개든(0개 포함) 무너지지 않는다.
   ============================================================ */

/* 가로 간격을 0 으로 둬 같은 줄의 사진끼리 맞붙게 한다.
   비균일한 칸 나눔(7/5, 5/7, 6/6)과 세로 어긋남은 그대로 살린다. */
.g-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 72px 0;
}

.g-grid--spaced { margin-top: 44px; }

/* 홈의 최근 소식은 목록이 아니라 띠 한 줄이다.
   칸 나눔을 셋으로 고정하고 가운데만 내려 어긋냄만 남긴다. */
.g-grid--strip { grid-template-columns: 1fr 1fr 1fr; gap: 0; }
.g-grid--strip .g-item:nth-child(6n + 1),
.g-grid--strip .g-item:nth-child(6n + 2),
.g-grid--strip .g-item:nth-child(6n + 3),
.g-grid--strip .g-item:nth-child(6n + 4),
.g-grid--strip .g-item:nth-child(6n + 5),
.g-grid--strip .g-item:nth-child(6n + 6) { grid-column: auto; margin-top: 0; }
.g-grid--strip .g-item:nth-child(2) { margin-top: 72px; }
.g-grid--strip .g-item:nth-child(6n + 1) .g-thumb,
.g-grid--strip .g-item:nth-child(6n + 3) .g-thumb,
.g-grid--strip .g-item:nth-child(6n + 4) .g-thumb,
.g-grid--strip .g-item .g-thumb { aspect-ratio: 3 / 2; }

/* 최근 소식 머리: 제목과 전체 보기 링크를 한 줄에 둔다.
   좌우 끝을 아래 사진 띠와 같은 지점에 맞춘다(사진 아래 글의 안쪽 여백과 동일). */
.strip-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 0 26px;
}
.strip-head .link { font-size: 14px; color: var(--ink-soft); }

.g-item {
  grid-column: span 6;
  display: block;
}

.g-item:nth-child(6n + 1) { grid-column: span 7; }
.g-item:nth-child(6n + 2) { grid-column: span 5; margin-top: 88px; }
.g-item:nth-child(6n + 3) { grid-column: span 5; margin-top: 96px; }
.g-item:nth-child(6n + 4) { grid-column: span 7; }
.g-item:nth-child(6n + 5) { grid-column: span 6; }
.g-item:nth-child(6n + 6) { grid-column: span 6; margin-top: 72px; }

.g-thumb {
  overflow: hidden;
  background: var(--paper-dark);
  aspect-ratio: 4 / 3;
}
.g-item:nth-child(6n + 1) .g-thumb { aspect-ratio: 3 / 2; }
.g-item:nth-child(6n + 3) .g-thumb { aspect-ratio: 5 / 4; }
.g-item:nth-child(6n + 4) .g-thumb { aspect-ratio: 16 / 10; }

.g-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.g-item:hover .g-thumb img,
.g-item:focus-visible .g-thumb img { transform: scale(1.04); }

/* 사진이 화면 끝까지 가므로 글만 조금 들여 쓴다. */
.g-body { padding: 18px 26px 0; }

.g-title {
  position: relative;
  display: inline;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background-image: linear-gradient(var(--ink), var(--ink));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition: background-size 0.6s var(--ease);
}

.g-item:hover .g-title,
.g-item:focus-visible .g-title { background-size: 100% 1px; }

.g-summary {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.95;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.g-date {
  display: block;
  margin-top: 14px;
  font-family: var(--serif-en);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
}

/* ============================================================
   폼 — 관공서 서식에서 벗어나되 입력 영역은 분명히 보이게
   ============================================================ */

.form-section {
  padding-top: 56px;
  margin-bottom: 76px;
  border-top: 1px solid var(--line);
}
.form-section:first-of-type { padding-top: 0; border-top: 0; }

.form-section-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 40px;
}

.form-section-no {
  font-family: var(--serif-en);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--brass);
}

.form-section-title {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.form-section-desc {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.field { margin-bottom: 34px; }

.field > label,
.question-text {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  /* 한글은 자간을 벌려도 우아해지지 않고 낱자로 흩어져 가독성만 떨어진다.
     Cinzel(영문·숫자)과 달리 아주 살짝만 열어 둔다. */
  letter-spacing: 0.01em;
  color: var(--ink-soft);
}

.field .optional {
  margin-left: 8px;
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--ink-faint);
}

.field input[type='text'],
.field input[type='tel'],
.field input[type='email'],
.field input[type='password'],
.field textarea,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 15px 14px;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  background: var(--paper-light);
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.3s var(--ease-soft), background-color 0.3s var(--ease-soft),
              box-shadow 0.3s var(--ease-soft);
}

.field textarea { min-height: 168px; resize: vertical; line-height: 1.95; }

.field input::placeholder,
.field textarea::placeholder { color: var(--ink-faint); }

/* 파란 링을 두르지 않는다. 선이 잉크색으로 짙어지고 바탕이 밝아진다. */
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  background: #FFFFFF;
  border-bottom-color: var(--ink);
  box-shadow: inset 0 -1px 0 var(--ink);
}

.field .hint { margin: 9px 0 0; font-size: 13px; color: var(--ink-soft); }
.field .error { margin: 9px 0 0; font-size: 13px; color: var(--danger); }

.field.has-error input,
.field.has-error textarea,
.field.has-error select,
.field.has-error .select-trigger {
  border-bottom-color: var(--danger);
  box-shadow: inset 0 -1px 0 var(--danger);
}

/* 버튼형 선택 항목 */

.question { margin-bottom: 40px; }

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice { position: relative; display: inline-flex; }

.choice input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.choice span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--rule);
  background: var(--paper-light);
  font-size: 15px;
  color: var(--ink);
  transition: background-color 0.35s var(--ease-soft), color 0.35s var(--ease-soft),
              border-color 0.35s var(--ease-soft);
}

.choice input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper-light);
}

.choice input:focus-visible + span {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

/* 카테고리 드롭다운 */

.select-wrap { position: relative; }

.select-native.is-enhanced {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  padding: 15px 14px;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  background: var(--paper-light);
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
}

.select-trigger:focus-visible,
.select-trigger[aria-expanded='true'] {
  outline: none;
  border-bottom-color: var(--ink);
  box-shadow: inset 0 -1px 0 var(--ink);
}

.select-trigger.is-placeholder { color: var(--ink-faint); }
.select-trigger svg { flex: none; transition: transform 0.4s var(--ease); }
.select-trigger[aria-expanded='true'] svg { transform: rotate(180deg); }

.select-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 40;
  max-height: 336px;
  overflow-y: auto;
  padding: 6px;
  border: 1px solid var(--ink);
  background: var(--paper-light);
}

.select-panel[hidden] { display: none; }

.select-option {
  padding: 13px 14px;
  font-size: 15.5px;
  color: var(--ink);
  cursor: pointer;
}

.select-option:hover,
.select-option.is-active { background: var(--paper-dark); }

.select-option[aria-selected='true'] {
  background: var(--ink);
  color: var(--paper-light);
}

/* 첨부 */

.file-field input[type='file'] {
  width: 100%;
  padding: 16px 14px;
  border: 1px dashed var(--rule);
  border-radius: 0;
  background: var(--paper-light);
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
}

.file-field input[type='file']:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

/* 동의 */

.agree {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  /* 동의문은 실제로 읽히는 문장이라 폼이 넓어져도 한 줄 길이는 따로 묶어 둔다.
     라벨만 좁히면 테두리 상자만 넓게 남아 오른쪽이 텅 비어 보이므로
     상자 자체를 내용에 맞춰 좁힌다. */
  max-width: 580px;
  border: 1px solid var(--line);
  background: var(--paper-light);
}

.agree input { margin-top: 7px; width: 18px; height: 18px; flex: none; accent-color: var(--ink); }
.agree label { font-size: 15px; line-height: 1.95; color: var(--ink-soft); }
.agree label .link { color: var(--ink); }

/* ============================================================
   알림, 빈 상태, 페이지 이동
   ============================================================ */

.flash {
  padding: 18px 22px;
  margin-bottom: 32px;
  border-left: 2px solid var(--ink);
  background: var(--paper-dark);
  font-size: 15px;
  color: var(--ink);
}

.flash--error { border-left-color: var(--danger); color: var(--danger); }

.empty {
  padding: 128px 20px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 15.5px;
  letter-spacing: 0.02em;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 96px;
}

.pagination a,
.pagination span {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif-en);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease);
}

.pagination a:hover { color: var(--ink); border-bottom-color: var(--rule); }

.pagination .is-current {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* ============================================================
   조회 결과, 접수 완료
   ============================================================ */

.slip {
  padding: 40px;
  border: 1px solid var(--line);
  background: var(--paper-light);
}

.slip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.ref-no {
  margin: 0;
  font-family: var(--serif-en);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.ref-no--lg { font-size: 34px; }

.dl {
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 14px 24px;
  font-size: 15px;
}
.dl dt { color: var(--ink-soft); font-size: 13px; letter-spacing: 0.08em; }
.dl dd { margin: 0; }

.reply {
  padding: 26px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--ink);
  background: var(--paper-light);
}
.reply-date { margin: 0 0 14px; font-size: 13px; color: var(--ink-soft); }
.reply-body { margin: 0; line-height: 2.05; }

.trail { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.trail li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.trail li span:last-child { color: var(--ink-soft); font-size: 13.5px; }

.sub-title {
  margin: 72px 0 22px;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
}

/* 본문 문서(방침 등) */

.doc { margin-top: 72px; }
.doc h2 {
  margin: 56px 0 14px;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.doc h2:first-of-type { margin-top: 0; }
.doc p { margin: 0; color: var(--ink-soft); line-height: 2.05; }

/* 갤러리 상세 */

.post-date {
  margin: 18px 0 0;
  font-family: var(--serif-en);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
}

.post-summary {
  margin: 0 0 34px;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.95;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.post-body { line-height: 2.05; color: var(--ink-soft); }

/* 접수 완료 화면의 접수번호 */

.receipt {
  margin: 60px 0 44px;
  padding: 44px;
  border: 1px solid var(--line);
  background: var(--paper-light);
}
.receipt .note { margin-bottom: 14px; }

/* 전화 문의 안내. 폼을 채우기 부담스럽거나 상담부터 원하는 분을 위한 대안 경로다.
   모바일 고정 버튼을 빼기로 하면서(2026-07-29) 이 한 줄이 유일한 전화 경로 안내가
   됐으므로, 각주처럼 묻히지 않게 본문(.lead)과 같은 크기로 두고 위에 구분선을 그어
   하나의 문단으로 읽히게 한다. 다만 배경·굵기·색은 그대로 둬 제출 버튼보다 튀지
   않게 한다. */
.call-note {
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 16px;
  line-height: 2;
  color: var(--ink-soft);
}
.call-note .link { color: var(--ink); }

/* 폼 블록의 위쪽 간격 */

.apply-form { margin-top: 72px; }
.lookup-form { margin: 56px 0 72px; }

/* about 본문 */

.prose p {
  margin: 0 0 32px;
  line-height: 2.1;
  color: var(--ink-soft);
}
.prose p:last-child { margin-bottom: 0; }

/* margin 단축 속성을 쓰면 .offset-right 의 margin-left:auto 가 지워진다.
   위아래 여백만 따로 지정한다. */
.prose-open {
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(21px, 2.1vw, 28px);
  line-height: 1.95;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.prose-close {
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 2.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ============================================================
   about / apply — 워드마크 칼럼 다음 여백 조정
   .wrap 은 페이지 콘텐츠 박스 안에서 가운데 정렬되는데, 그 박스 자체가
   화면 폭만큼 계속 넓어지다 보니(오른쪽 제약이 없어서) 우측 정렬된
   본문(.offset-right)이 화면이 넓어질수록 더 오른쪽으로 밀려났다(1920 에서 특히).
   about 은 .wrap 자체를 워드마크 칼럼 바로 옆에 붙이고(가운데 정렬 해제)
   폭도 줄여, 본문(.offset-right, 폭은 그대로 45~55자 상한 안쪽)이
   화면 크기와 무관하게 항상 같은 지점에서 시작하도록 고정한다.
   about 의 .wrap 안에는 .offset-right 뿐이라 폭을 줄여도 다른 요소에
   영향이 없다.
   apply 는 비대칭이 아니라 대칭 폼이라 가운데 정렬은 그대로 두고,
   같은 이유로 폭만 넓혀 양옆 여백을 줄인다. */
.page-about .wrap {
  max-width: 960px;
  margin-left: 0;
}

.page-apply .wrap--narrow { max-width: 1080px; }

/* ============================================================
   꼬리말
   ============================================================ */

.site-footer {
  padding-left: var(--wordmark-col);
  border-top: 1px solid var(--line);
  background: var(--paper-dark);
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 2.1;
}

.site-footer .wrap { padding-top: 64px; padding-bottom: 72px; }

.footer-brand {
  font-family: var(--serif-en);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.2em;
  /* 브랜드 남색을 쓰는 두 곳 중 나머지 하나 */
  color: var(--navy);
  margin-bottom: 26px;
}

.footer-info { display: flex; flex-wrap: wrap; gap: 2px 26px; }
.footer-links { margin-top: 20px; gap: 2px 24px; }
.footer-links a { color: var(--ink); }

/* 이메일 복사 칩. .link 와 같은 밑줄 상호작용을 쓰되 페이지 이동은 없으므로
   버튼 역할(role/tabindex)과 포인터 커서를 더한다. 텍스트는 항상 그대로 보이고
   선택도 되므로, 클립보드 복사가 실패해도 사용자가 직접 긁어 복사할 수 있다. */
.email-copy {
  cursor: pointer;
}
.email-copy:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

/* 복사 결과를 잠깐 보여주는 문구. 요란하지 않게 옅은 글자색으로만 뜨고 사라진다. */
.copy-feedback {
  margin-left: 8px;
  font-size: 12px;
  color: var(--ink-faint);
  opacity: 0;
  transition: opacity 0.3s var(--ease-soft);
}
.copy-feedback.is-visible { opacity: 1; }

.footer-copy {
  margin-top: 32px;
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
}

/* ============================================================
   상태 배지
   ============================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 14px;
  border: 1px solid var(--rule);
  border-radius: 0;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  background: var(--paper-light);
  white-space: nowrap;
}
.badge--received  { border-color: var(--rule); color: var(--ink-soft); }
.badge--reviewing { border-color: var(--ink); color: var(--ink); }
.badge--more_info { border-color: var(--brass); color: var(--brass); }
.badge--approved  { border-color: var(--ink); background: var(--ink); color: var(--paper-light); }
.badge--hold      { border-color: var(--line); color: var(--ink-faint); }
.badge--rejected  { border-color: var(--danger); color: var(--danger); }

/* ============================================================
   화면 폭을 그대로 쓰는 유틸리티

   .page 가 왼쪽에 워드마크 칼럼만큼 안쪽 여백을 두고 있어서,
   그만큼 되돌려야 사진이 화면 끝에서 끝까지 간다.
   width 를 calc 로 되찾으므로 가로 스크롤이 생기지 않는다.

   .fig 의 margin 단축 속성처럼 같은 자리를 건드리는 규칙이 위쪽에 여럿 있어
   순서로 이겨야 한다. 그래서 컴포넌트 규칙을 모두 지난 이 자리에 둔다.
   ============================================================ */

.bleed {
  margin-left: calc(-1 * var(--wordmark-col));
  width: calc(100% + var(--wordmark-col));
}

/* 화면 폭을 쓰는 구간 안에서 글자만 다시 워드마크 칼럼 안쪽으로 들여쓴다. */
.bleed-inner { padding-left: var(--wordmark-col); }

/* ============================================================
   접근성 유틸리티
   ============================================================ */

.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;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--paper-light);
}
.skip-link:focus { left: 0; }

/* ============================================================
   반응형
   ============================================================ */

@media (max-width: 1180px) {
  :root { --wordmark-col: 104px; }
  .wrap { padding: 0 34px; }
  .hero-copy { padding: 0 34px 84px; }
  .s-open { padding: 120px 0; }
  .s-wide { padding: 104px 0; }
  .duo > :nth-child(2),
  .duo--flip > :nth-child(1) { margin-top: 64px; }
}

@media (max-width: 900px) {
  .g-item,
  .g-item:nth-child(6n + 1),
  .g-item:nth-child(6n + 2),
  .g-item:nth-child(6n + 3),
  .g-item:nth-child(6n + 4),
  .g-item:nth-child(6n + 5),
  .g-item:nth-child(6n + 6) { grid-column: span 6; margin-top: 0; }

  .g-item:nth-child(2n) { margin-top: 48px; }

  /* 좁아지면 세 장을 나란히 두기 어렵다. 둘을 위에 두고 하나를 아래에 넓게 깐다. */
  .trio { grid-template-columns: 1fr 1fr; }
  .trio > :nth-child(2) { margin-top: 0; }
  .trio > :nth-child(3) { grid-column: 1 / -1; }
  .trio > :nth-child(3) .fig-media { aspect-ratio: 21 / 9; }

  .duo,
  .duo--flip { grid-template-columns: 1fr; gap: 0; }
  .duo > :nth-child(1),
  .duo > :nth-child(2),
  .duo--flip > :nth-child(1),
  .duo--flip > :nth-child(2) { margin-top: 0; }
  .duo .fig-media,
  .duo--flip .fig-media { aspect-ratio: 3 / 2; }
}

@media (max-width: 768px) {
  :root { --header-h: 62px; }

  body { font-size: 16px; }

  /* 좁은 화면에서 세로 워드마크는 본문을 가린다. */
  .wordmark { display: none; }
  .page { padding-left: 0; }
  .site-footer { padding-left: 0; }
  .bleed { margin-left: 0; width: 100%; }
  .bleed-inner { padding-left: 0; }
  /* 워드마크를 숨기므로 비켜 갈 자리도 필요 없다. */
  .intro-clear { min-height: 0; display: block; }

  .site-header { padding: 0 20px; }
  .site-nav { gap: 20px; }
  .site-nav a { font-size: 14px; }
  .site-logo img { width: 50px; }

  .wrap { padding: 0 22px; }
  .site-footer .wrap { padding-top: 56px; padding-bottom: 64px; }

  .s-tight { padding: 44px 0; }
  .s-mid   { padding: 64px 0; }
  .s-wide  { padding: 76px 0; }
  .s-open  { padding: 88px 0; }

  .hero { min-height: auto; padding-top: 24px; flex-direction: column; align-items: stretch; }
  .hero-crystal {
    position: relative;
    height: 320px;
    background-image: url('../img/hero-bg-sm.webp');
    /* 좁은 화면에서 contain 을 쓰면 새가 너무 작아진다. */
    background-size: cover;
    background-position: center 46%;
  }
  .hero-copy { padding: 26px 22px 64px; }
  .hero-copy p { font-size: 16.5px; line-height: 2.05; }

  .g-grid { grid-template-columns: 1fr; gap: 0; }
  .g-item,
  .g-item:nth-child(6n + 1),
  .g-item:nth-child(6n + 2),
  .g-item:nth-child(6n + 3),
  .g-item:nth-child(6n + 4),
  .g-item:nth-child(6n + 5),
  .g-item:nth-child(6n + 6) { grid-column: auto; margin-top: 0; margin-bottom: 44px; }
  .g-item .g-thumb,
  .g-item:nth-child(6n + 1) .g-thumb,
  .g-item:nth-child(6n + 3) .g-thumb,
  .g-item:nth-child(6n + 4) .g-thumb { aspect-ratio: 4 / 3; }
  .g-body { padding: 16px 22px 0; }
  .g-grid--strip .g-item:nth-child(2) { margin-top: 0; }
  .strip-head { padding: 0 22px; }

  .trio { grid-template-columns: 1fr; }
  .trio > :nth-child(3) { grid-column: auto; }
  .trio > :nth-child(3) .fig-media { aspect-ratio: 3 / 2; }
  .soot-body { padding: 56px 0 64px; }
  .soot-body--tall { padding: 88px 0 96px; }

  .offset-right, .offset-left { max-width: none; }

  .btn { min-height: 52px; padding: 0 26px; font-size: 15px; }
  .btn-row { margin-top: 34px; }

  .slip { padding: 26px; }
  .dl { grid-template-columns: 1fr; gap: 2px 0; }
  .dl dt { margin-top: 16px; }
  .form-section { margin-bottom: 56px; padding-top: 44px; }
  .choice span { min-height: 46px; padding: 0 18px; font-size: 14.5px; }
  .empty { padding: 84px 16px; }
}

/* ============================================================
   모션을 줄이도록 설정한 사용자
   전환을 즉시 끝내고, 숨겨 두는 초기 상태도 두지 않는다.
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  [data-reveal],
  [data-reveal] .g-thumb,
  [data-reveal] > .fig-media,
  .hero-line,
  .hero-crystal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }
}
