/* =====================================================
   과거회상 · Past Scene Studio
   순백 · 잉크 · 베이지 3색 · 얇은 세리프 · 여백 위주
   ===================================================== */

:root {
  --ink: #14100c;
  --ink-soft: #4a4540;
  --mute: #8a847e;
  --line: #ececea;
  --line-soft: #f2f1ef;
  --paper: #ffffff;
  --paper-alt: #fafaf8;
  --white: #ffffff;
  --accent: #b8926a;
  --accent-soft: #d8c2a8;
  --overlay-bg: #0a0806;
  --btn: #b8926a;
  --btn-hover: #a37f5b;
  --btn-ink: #ffffff;
  --serif: "Noto Serif KR", "Nanum Myeongjo", "Batang", "바탕", serif;
  --max: 1400px;
  --topbar-h: 68px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--topbar-h);
}
body {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-break: keep-all;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

/* ================= 얇은 스크롤바 (튀지 않게) ================= */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(20, 16, 12, 0.15) transparent;
}
*::-webkit-scrollbar { width: 6px; height: 6px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb {
  background: rgba(20, 16, 12, 0.14);
  border-radius: 999px;
}
*::-webkit-scrollbar-thumb:hover { background: rgba(20, 16, 12, 0.28); }

/* 홈은 스크롤 자체를 잠금 */
body.page-home { height: 100vh; overflow: hidden; }
body.page-home::-webkit-scrollbar { display: none; }

/* 메뉴 열릴 때 배경 스크롤 잠금 */
body.menu-open { overflow: hidden; }

/* ================= 상단 : 로고 + 햄버거 ================= */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;   /* 오버레이(110) 위에 있음 — 항상 보임 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  background: transparent;
  transition: background .4s ease, color .4s ease;
}
.topbar .logo {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--ink);
  padding-left: 0.4em;
  transition: color .4s;
}
.topbar--home .logo { color: var(--white); text-shadow: 0 2px 12px rgba(0,0,0,0.35); }

/* 메뉴 버튼 = 큰 = / × */
.menu-btn {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  transition: color .4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topbar--home .menu-btn { color: var(--white); }
.menu-btn .mb-open,
.menu-btn .mb-close {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1;
  transition: opacity .3s ease, transform .3s ease;
}
.menu-btn .mb-open { font-size: 30px; opacity: 1; }
.menu-btn .mb-close { font-size: 34px; opacity: 0; transform: rotate(-90deg); }

body.menu-open .menu-btn { color: var(--paper); }
body.menu-open .menu-btn .mb-open { opacity: 0; transform: rotate(90deg); }
body.menu-open .menu-btn .mb-close { opacity: 1; transform: rotate(0); }
body.menu-open .topbar .logo { color: var(--paper); }

@media (max-width: 720px) {
  .topbar { padding: 18px 22px; }
  .topbar .logo { font-size: 15px; }
}

/* ================= 배너 (풀스크린 · 잠김) ================= */
.hero-full {
  position: fixed;
  inset: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 55%;
  background-repeat: no-repeat;
  animation: heroZoom 22s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 45%, rgba(0,0,0,0.6) 100%);
}
.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  animation: fadeUp 1.8s ease-out .4s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.home-title {
  font-family: var(--serif);
  font-size: clamp(4.4rem, 13vw, 9.5rem);
  font-weight: 200;
  letter-spacing: 0.32em;
  line-height: 1;
  padding-left: 0.32em;
  text-shadow: 0 6px 40px rgba(0,0,0,0.4);
  margin-bottom: 26px;
}
.home-name {
  font-family: var(--serif);
  font-size: clamp(12px, 1.35vw, 14.5px);
  font-weight: 300;
  letter-spacing: 0.65em;
  color: rgba(255,255,255,0.72);
  padding-left: 0.65em;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
  margin-bottom: 38px;
}
.home-sub {
  font-family: var(--serif);
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 200;
  letter-spacing: 0.55em;
  color: rgba(255, 255, 255, 0.92);
  padding-left: 0.55em;
  text-shadow: 0 3px 20px rgba(0,0,0,0.4);
}

/* ================= 오버레이 : 유리 뒷배경 · 글씨만 드롭 ================= */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(20, 16, 12, 0.55);
  backdrop-filter: blur(28px) saturate(120%);
  -webkit-backdrop-filter: blur(28px) saturate(120%);
  color: var(--paper);
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s cubic-bezier(.6,.05,.15,1), visibility .5s;
}
.overlay.open {
  opacity: 1;
  visibility: visible;
}
.overlay-inner {
  min-height: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: calc(var(--topbar-h) + 50px) 48px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.overlay-cols {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 80px;
  align-content: start;
  padding-bottom: 46px;
}

/* 두 헤더의 baseline 정렬 */
.ov-head {
  font-family: var(--serif);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: baseline;
  gap: 14px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .6s ease .05s, transform .6s ease .05s;
}
.overlay.open .ov-head { opacity: 1; transform: translateY(0); }
.ov-head .oh-ko {
  font-size: 12px;
  letter-spacing: 0.5em;
  padding-left: 0.5em;
  color: rgba(255, 255, 255, 0.65);
}
.ov-head .oh-en {
  font-size: 10px;
  letter-spacing: 0.32em;
  padding-left: 0.32em;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
}

/* 리스트 : 세로 (안내) */
.ov-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 리스트 : 2단 그리드 (공간 · 5행 × 2열) */
.ov-list--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  column-gap: 30px;
  row-gap: 0;
}

.ov-list li {
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .5s ease, transform .5s ease;
}
.overlay.open .ov-list li { opacity: 1; transform: translateY(0); }

/* 위 → 아래 순차 드롭 */
.overlay.open .ov-list li:nth-child(1)  { transition-delay: .10s; }
.overlay.open .ov-list li:nth-child(2)  { transition-delay: .14s; }
.overlay.open .ov-list li:nth-child(3)  { transition-delay: .18s; }
.overlay.open .ov-list li:nth-child(4)  { transition-delay: .22s; }
.overlay.open .ov-list li:nth-child(5)  { transition-delay: .26s; }
.overlay.open .ov-list li:nth-child(6)  { transition-delay: .30s; }
.overlay.open .ov-list li:nth-child(7)  { transition-delay: .34s; }
.overlay.open .ov-list li:nth-child(8)  { transition-delay: .38s; }
.overlay.open .ov-list li:nth-child(9)  { transition-delay: .42s; }
.overlay.open .ov-list li:nth-child(10) { transition-delay: .46s; }

.ov-list a {
  display: block;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 0.18em;
  padding-left: 0.18em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.45);
  transition: color .3s, transform .3s, letter-spacing .3s;
  transform-origin: left;
  white-space: nowrap;
}
.ov-list a:hover {
  color: var(--white);
  transform: translateX(5px);
  letter-spacing: 0.22em;
}

.overlay-foot {
  text-align: center;
  padding-top: 20px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .6s ease .55s, transform .6s ease .55s;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.overlay.open .overlay-foot { opacity: 1; transform: translateY(0); }
.ov-cta {
  display: inline-block;
  padding: 14px 40px;
  padding-left: calc(40px + 0.26em);
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 12.5px;
  font-weight: 300;
  letter-spacing: 0.3em;
  transition: all .3s;
}
.ov-cta:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.ov-cta--sub {
  border-color: rgba(255,255,255,0.32);
  color: rgba(255,255,255,0.82);
}

@media (max-width: 720px) {
  .overlay-inner {
    padding: calc(var(--topbar-h) + 24px) 26px 30px;
    justify-content: flex-start;
  }
  .overlay-cols { grid-template-columns: 1fr; gap: 34px; padding-bottom: 26px; }
  .ov-head { margin-bottom: 16px; padding-bottom: 12px; }
  .ov-list--grid { column-gap: 20px; }
  .ov-list a { font-size: 16.5px; padding: 8px 0; }
  .ov-cta { padding: 12px 30px; font-size: 12px; }
}

/* ================= 서브 페이지 공통 헤더 ================= */
.page-sub {
  padding-top: var(--topbar-h);
}
.page-head {
  padding: 110px 24px 70px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.ph-en {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--mute);
  padding-left: 0.55em;
  margin-bottom: 26px;
}
.ph-ko {
  font-family: var(--serif);
  font-size: clamp(30px, 4.6vw, 46px);
  font-weight: 200;
  letter-spacing: 0.2em;
  color: var(--ink);
  padding-left: 0.2em;
  line-height: 1.2;
  margin-bottom: 28px;
}
.ph-sub {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 22px;
  line-height: 1.9;
  padding-left: 0.08em;
  font-style: italic;
}
.ph-desc {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 13.5px;
  letter-spacing: 0.14em;
  color: var(--mute);
  max-width: 540px;
  margin: 0 auto;
  line-height: 2;
  padding-left: 0.14em;
}
.ph-crumb {
  margin-top: 36px;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.32em;
  padding-left: 0.32em;
  text-transform: uppercase;
}
.ph-crumb a { color: var(--mute); transition: color .25s; }
.ph-crumb a:hover { color: var(--accent); }

/* ================= 방 페이지 (이미지 큰 사이즈) ================= */
.room-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 24px 80px;
}
.room-gallery {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.room-shot {
  width: 100%;
  background: transparent;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: shotIn .9s ease-out forwards;
}
.room-shot:nth-child(1) { animation-delay: .05s; }
.room-shot:nth-child(2) { animation-delay: .12s; }
.room-shot:nth-child(3) { animation-delay: .19s; }
.room-shot:nth-child(4) { animation-delay: .26s; }
.room-shot:nth-child(5) { animation-delay: .33s; }
.room-shot:nth-child(6) { animation-delay: .40s; }
.room-shot:nth-child(n+7) { animation-delay: .47s; }
@keyframes shotIn {
  to { opacity: 1; transform: translateY(0); }
}
.room-shot img {
  width: 100%;
  height: auto;
  max-height: 95vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  image-rendering: high-quality;
}

/* 도면 자리 */
.room-placeholder {
  min-height: 340px;
  border: 1px dashed var(--line);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 60px;
}
.ph-mark {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.45em;
  color: var(--accent);
  padding-left: 0.45em;
}
.ph-hint {
  font-family: var(--serif);
  font-size: 11.5px;
  font-weight: 300;
  letter-spacing: 0.28em;
  color: var(--mute);
  padding-left: 0.28em;
}

@media (max-width: 720px) {
  .room-body { padding: 30px 12px 50px; }
  .room-gallery { gap: 14px; }
  .room-shot img { max-height: none; }
}

/* ================= 이 집 이야기 (guide 상단) ================= */
.story-block {
  max-width: 720px;
  margin: 0 auto 50px;
  padding: 0 28px 60px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.story-en {
  font-family: var(--serif);
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--mute);
  padding-left: 0.55em;
  margin-bottom: 20px;
}
.story-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 200;
  letter-spacing: 0.28em;
  padding-left: 0.28em;
  color: var(--ink);
  margin-bottom: 34px;
}
.story-block p {
  font-family: var(--serif);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 2.15;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  margin-bottom: 16px;
  text-align: left;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.story-block p:last-child {
  margin-bottom: 0;
  color: var(--mute);
  font-style: italic;
  padding-top: 8px;
}

@media (max-width: 720px) {
  .story-block { padding: 0 18px 40px; margin-bottom: 34px; }
  .story-title { font-size: 19px; margin-bottom: 24px; }
  .story-block p { font-size: 13.5px; line-height: 2; }
}

/* ================= 안내 인덱스 (카드) ================= */
.guide-grid {
  max-width: 1040px;
  margin: 0 auto;
  padding: 20px 24px 70px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}
.guide-card {
  position: relative;
  display: block;
  padding: 46px 36px 46px;
  transition: background .4s ease;
  min-height: 220px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.guide-card:hover { background: var(--paper-alt); }
.gc-en {
  font-family: var(--serif);
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--mute);
  padding-left: 0.44em;
  margin-bottom: 18px;
}
.gc-ko {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 200;
  letter-spacing: 0.16em;
  padding-left: 0.16em;
  color: var(--ink);
  margin-bottom: 18px;
}
.gc-hint {
  font-family: var(--serif);
  font-size: 12.5px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--mute);
  line-height: 1.9;
  min-height: 3em;
}
.gc-arrow {
  position: absolute;
  right: 36px;
  bottom: 36px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 200;
  color: var(--accent);
  transition: transform .35s, color .35s;
}
.guide-card:hover .gc-arrow { transform: translateX(8px); color: var(--ink); }

/* ================= 안내 상세 (세련화) ================= */
.guide-detail {
  max-width: 680px;
  margin: 0 auto;
  padding: 30px 28px 40px;
}

/* 상단 서문 */
.guide-intro {
  padding: 40px 32px;
  margin-bottom: 40px;
  background: var(--paper-alt);
  border-left: 2px solid var(--accent);
}
.guide-intro p {
  font-family: var(--serif);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 2.05;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

/* 각 블록 */
.guide-block {
  padding: 46px 0;
  border-top: 1px solid var(--line);
}
.guide-block:first-of-type { border-top: none; padding-top: 0; }
.gb-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.24em;
  padding-left: 0.24em;
  color: var(--ink);
  margin-bottom: 26px;
}

/* 리스트 (마커 없음 · 얇은 라인) */
.gb-list {
  list-style: none;
  padding: 0;
}
.gb-list li {
  position: relative;
  padding: 6px 0 6px 20px;
  font-family: var(--serif);
  font-size: 14.5px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 2;
  letter-spacing: 0.01em;
}
.gb-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 10px;
  height: 1px;
  background: var(--accent-soft);
}

/* 청구 기준 표 */
.guide-fees .fee-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--line);
}
.fee-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.fee-item {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--ink);
  grid-column: 1;
  grid-row: 1;
}
.fee-amount {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--accent);
  grid-column: 2;
  grid-row: 1;
  white-space: nowrap;
}
.fee-note {
  font-family: var(--serif);
  font-size: 12.5px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--mute);
  line-height: 1.8;
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 6px;
}

/* 마무리 문단 */
.guide-closing {
  margin-top: 46px;
  padding: 34px 32px;
  background: var(--paper-alt);
  border-radius: 2px;
}
.guide-closing p {
  font-family: var(--serif);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 2;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  text-align: center;
}

@media (max-width: 720px) {
  .guide-grid { padding: 20px 16px 40px; }
  .guide-card { padding: 36px 24px 36px; min-height: 0; }
  .gc-ko { font-size: 20px; }
  .guide-detail { padding: 20px 18px 30px; }
  .guide-intro { padding: 30px 22px; margin-bottom: 30px; }
  .guide-intro p { font-size: 13.5px; }
  .guide-block { padding: 34px 0; }
  .gb-title { font-size: 15px; }
  .gb-list li { font-size: 13.5px; }
  .fee-item { font-size: 14px; }
  .fee-amount { font-size: 14px; }
  .fee-note { font-size: 12px; }
  .guide-closing { padding: 26px 22px; }
}

/* ================= 페이지 하단 CTA ================= */
.page-cta {
  padding: 100px 24px 120px;
  text-align: center;
  background: var(--paper);
  margin-top: 60px;
  border-top: 1px solid var(--line);
}
.btn {
  display: inline-block;
  padding: 18px 46px;
  padding-left: calc(46px + 0.24em);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-align: center;
  transition: all .3s;
}
.btn-primary {
  background: var(--btn);
  color: var(--btn-ink);
}
.btn-primary:hover {
  background: var(--btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(184, 146, 106, 0.32);
}
.page-meta {
  margin-top: 32px;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.28em;
  color: var(--mute);
  padding-left: 0.28em;
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero-img { animation: none; transform: none; }
  .hero-center { animation: none; }
  .room-shot { animation: none; opacity: 1; transform: none; }
  .ov-col, .overlay-foot { transition: none; opacity: 1; transform: none; }
}

/* ================= 예약 캘린더 (schedule.html) ================= */
.schedule-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 24px 40px;
}
.sch-legend {
  display: flex;
  gap: 22px;
  justify-content: center;
  padding: 0 0 30px;
  font-family: var(--serif);
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(20,16,12,0.72);
  letter-spacing: 0.12em;
  flex-wrap: wrap;
}
.sch-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  transform: translateY(-1px);
}
.sch-dot--shoot    { background: #6b5a3e; }
.sch-dot--visit    { background: #a79b8e; }
.sch-dot--personal { background: #cfc7bb; }

.sch-list {
  min-height: 300px;
}
.sch-loading, .sch-empty, .sch-error {
  text-align: center;
  padding: 60px 20px;
  font-family: var(--serif);
  font-size: 14.5px;
  font-weight: 300;
  color: rgba(20,16,12,0.55);
  letter-spacing: 0.06em;
  line-height: 1.9;
}
.sch-empty { color: rgba(20,16,12,0.72); }

.sch-day {
  border-top: 1px solid rgba(20,16,12,0.12);
  padding: 26px 0 22px;
}
.sch-day:first-child { border-top: none; padding-top: 8px; }
.sch-date {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.16em;
  margin: 0 0 14px;
  color: var(--ink);
}
.sch-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sch-item {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding: 10px 14px;
  border-radius: 6px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.06em;
  background: rgba(20,16,12,0.03);
  border-left: 3px solid transparent;
}
.sch-item--shoot    { border-left-color: #6b5a3e; }
.sch-item--visit    { border-left-color: #a79b8e; }
.sch-item--personal { border-left-color: #cfc7bb; color: rgba(20,16,12,0.55); }
.sch-time {
  font-variant-numeric: tabular-nums;
  color: rgba(20,16,12,0.7);
  font-size: 13.5px;
}
.sch-name {
  color: var(--ink);
}
.sch-kind {
  font-size: 11px;
  color: rgba(20,16,12,0.5);
  letter-spacing: 0.14em;
}
.sch-note {
  margin: 28px 0 0;
  text-align: center;
  font-family: var(--serif);
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(20,16,12,0.45);
  letter-spacing: 0.06em;
  line-height: 1.9;
}

@media (max-width: 560px) {
  .sch-item {
    grid-template-columns: 100px 1fr;
    gap: 8px 12px;
  }
  .sch-kind { grid-column: 1 / -1; padding-left: 0; }
  .sch-legend { gap: 14px; font-size: 12px; }
}
