/* LORA DAYS — 공개 사이트 디자인 시스템
   프로토타입(LoraDays.dc.html)의 톤을 그대로 따르되, 원본이 데스크톱 전용이었던 부분을
   모바일 우선으로 재작성했다. 색·폰트·기본 글자크기는 서버가 :root 에 주입한다. */

:root {
  --accent: #A88B6A;
  --accent-text: #755A3F;
  --text: #2B2723;
  --bg: #FBFAF7;
  --head: 'Cormorant Garamond', 'Noto Serif KR', serif;
  --body: 'Pretendard', 'Noto Sans KR', sans-serif;

  --line: rgba(43, 39, 35, .12);
  --line-soft: rgba(43, 39, 35, .07);
  --tint: rgba(43, 39, 35, .025);
  --accent-tint: rgba(168, 139, 106, .12);

  --pad-y: 9vh;
  --pad-x: 7vw;
  --maxw: 1200px;
}
[hidden] { display: none !important; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: rgba(168, 139, 106, .25); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; color: inherit; background: none; border: none; cursor: pointer; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

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

/* 이미지 자리표시자 — 아직 사진이 없는 칸 */
.ph {
  background: linear-gradient(135deg, rgba(43, 39, 35, .06), rgba(43, 39, 35, .11));
  display: flex; align-items: center; justify-content: center;
  color: rgba(43, 39, 35, .3); font-size: .75rem; letter-spacing: .1em;
}

.media { background-size: cover; background-position: center; background-repeat: no-repeat; }

/* 이미지 프레임 — 비율 상자 + object-fit. 레이아웃 흔들림(CLS)을 막는다. */
.frame { overflow: hidden; background: rgba(43, 39, 35, .05); position: relative; }
.frame > picture { display: block; width: 100%; height: 100%; }
.frame > picture > img,
.frame > img { width: 100%; height: 100%; object-fit: cover; transition: filter .2s, transform .35s; }
.frame.venue-logo { background: #fff; padding: 16%; }
.frame.venue-logo > img { object-fit: contain; }
a:hover > .frame > picture > img,
button:hover > .frame > picture > img,
a:hover > .frame > img,
button:hover > .frame > img { transform: scale(1.03); }

.cell-3x4 { aspect-ratio: 3/4; }
.cell-2x3 { aspect-ratio: 2/3; }
.cell-4x5 { aspect-ratio: 4/5; }
.video-embed { width: min(100%, 1100px); margin: 0 auto 42px; aspect-ratio: 16/9; background: #000; }
.video-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

button.lb-open { display: block; width: 100%; padding: 0; }

/* ---------------------------------------------------------------- 헤더 */

.site-header {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 18px var(--pad-x);
  background: rgba(251, 250, 247, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.brand {
  font-family: var(--head);
  font-size: 22px; letter-spacing: .28em; font-weight: 500;
  white-space: nowrap;
}

.nav { display: flex; gap: 28px; align-items: center; }

.nav a {
  font-family: var(--body);
  font-size: 13px; letter-spacing: .12em; font-weight: 500;
  opacity: .72; transition: opacity .15s, color .15s;
  white-space: nowrap;
}
.nav a:hover { opacity: 1; }
.nav a[aria-current="page"] { opacity: 1; color: var(--accent); font-weight: 600; }

.nav-toggle { display: none; font-size: 22px; line-height: 1; padding: 4px 6px; }

@media (max-width: 860px) {
  .site-header { padding: 14px 20px; }
  .brand { font-size: 18px; letter-spacing: .22em; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 56px 0 auto 0;
    flex-direction: column; gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden;
    transition: max-height .28s ease;
  }
  .nav[data-open="true"] { max-height: 70vh; overflow-y: auto; }
  .nav a { padding: 16px 20px; width: 100%; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
}

/* ---------------------------------------------------------------- 섹션 공통 */

.section { padding: var(--pad-y) var(--pad-x); }
.section--tint { background: var(--tint); }
.section__inner { max-width: var(--maxw); margin: 0 auto; }

.section__head { text-align: center; margin-bottom: 5vh; }
.section__head--left { text-align: left; }

.kicker {
  font-family: var(--body);
  font-size: .78em; letter-spacing: .3em; font-weight: 600;
  color: var(--accent); margin-bottom: 14px;
}

.section h2 {
  font-family: var(--head);
  font-weight: 400; font-size: 3em; line-height: 1.15;
  overflow-wrap: break-word;
}

.section__sub {
  font-family: var(--body); font-weight: 300;
  margin-top: 14px; opacity: .7; font-size: 1.02em; line-height: 1.7;
  white-space: pre-line;
}
.section__head--left .section__sub { max-width: 52ch; }

.more {
  display: inline-block; margin-top: 4vh;
  font-family: var(--body); font-size: .8em; letter-spacing: .14em; font-weight: 600;
  color: var(--accent-text); border: 1px solid var(--accent);
  padding: 13px 32px; border-radius: 2px;
  transition: background .15s, color .15s;
}
.more:hover { background: var(--accent); color: #fff; }
.more-wrap { text-align: center; }

@media (max-width: 860px) {
  :root { --pad-y: 7vh; --pad-x: 24px; }
  .section h2 { font-size: 2.1em; }
}

/* ---------------------------------------------------------------- 히어로 */

.hero {
  position: relative; min-height: 82vh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; display: block; width: 100%; height: 100%; }
.hero__media > img { width: 100%; height: 100%; object-fit: cover; object-position: var(--hero-position, center center); }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 14, .15) 0%, rgba(20, 17, 14, .05) 40%, rgba(20, 17, 14, .5) 100%);
}
.hero__body {
  position: relative; z-index: 2;
  width: min(760px, 100%);
  padding: 0 var(--pad-x) 7vh; color: #fff;
  animation: fadeUp .8s ease both;
}
.hero__kicker {
  font-family: var(--body); font-size: .8em; letter-spacing: .32em;
  font-weight: 600; opacity: .9; margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--head); font-weight: 400;
  font-size: 4.6em; line-height: 1.08; letter-spacing: .01em;
  white-space: pre-line; text-shadow: 0 2px 30px rgba(0, 0, 0, .25);
}
.hero__sub {
  font-family: var(--body); font-size: 1.15em; font-weight: 300;
  margin-top: 20px; max-width: 48ch; line-height: 1.7; opacity: .96;
  white-space: pre-line;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero__cta {
  display: inline-block;
  font-family: var(--body); font-size: .82em; letter-spacing: .16em; font-weight: 600;
  border: 1px solid rgba(255, 255, 255, .7); padding: 15px 34px; border-radius: 2px;
  transition: background .15s, color .15s;
}
.hero__cta:hover { background: #fff; color: var(--text); }
.hero__cta--ghost { background: rgba(20, 17, 14, .18); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

@media (max-width: 860px) {
  .hero { min-height: 74vh; }
  .hero__media > img { object-position: var(--hero-mobile-position, center center); }
  .hero__body { padding-bottom: 5vh; }
  .hero h1 { font-size: clamp(2em, 8.7vw, 2.65em); line-height: 1.12; word-break: keep-all; }
  .hero__sub { font-size: .94em; max-width: 36ch; line-height: 1.65; word-break: keep-all; }
  .hero__actions { margin-top: 20px; }
  .hero__cta { padding: 12px 17px; font-size: .75em; letter-spacing: .08em; }
}

/* 하위 페이지 히어로 */
.subhero {
  position: relative; min-height: 46vh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.subhero__media {
  position: absolute; inset: 0; display: block;
  width: 100%; height: 100%;
}
.subhero__media > img {
  display: block; width: 100%; height: 100%; object-fit: cover;
}
.subhero__body { position: relative; z-index: 2; padding: 0 var(--pad-x) 6vh; color: #fff; }
.subhero h1 { font-family: var(--head); font-weight: 400; font-size: 4em; line-height: 1.05; }
.subhero__meta { font-family: var(--body); font-size: 15px; opacity: .85; margin-top: 10px; letter-spacing: .05em; }
.subhero__kicker {
  font-family: var(--body); font-size: 13px; letter-spacing: .24em;
  font-weight: 600; opacity: .9; margin-bottom: 14px;
}
@media (max-width: 860px) { .subhero h1 { font-size: 2.4em; } }
.venue-hero { max-width: var(--maxw); margin: 0 auto; padding: clamp(58px, 7vw, 104px) var(--pad-x) clamp(54px, 8vw, 110px); }
.venue-hero__heading { margin-bottom: clamp(36px, 5vw, 72px); min-width: 0; }
.venue-hero__heading h1 { font-family: var(--body); font-size: clamp(1.85rem, 2.55vw, 2.65rem); font-weight: 500; line-height: 1.2; margin: 0; word-break: keep-all; white-space: nowrap; letter-spacing: -.045em; }
.venue-hero__content { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.venue-hero__copy h2 { font-family: var(--body); font-size: 1.08em; font-weight: 700; margin-bottom: 14px; }
.venue-hero__copy p { font-family: var(--body); font-size: 1em; line-height: 1.95; opacity: .78; white-space: pre-line; word-break: keep-all; }
.venue-hero__meta { font-family: var(--body); font-size: .78em; font-weight: 700; letter-spacing: .13em; opacity: .65; margin-top: 18px; }
.venue-hero__copy .back-link { display: inline-block; margin-bottom: 34px; }
.venue-hero__image { min-width: 0; }
.venue-hero__image .frame { aspect-ratio: 4/3; border-radius: 28px; }
@media (max-width: 780px) {
  .venue-hero { padding-top: 44px; }
  .venue-hero__heading { margin-bottom: 30px; }
  .venue-hero__heading h1 { font-size: clamp(1.65rem, 6.8vw, 2rem); line-height: 1.28; white-space: normal; overflow-wrap: normal; }
  .venue-hero__meta { margin-top: 14px; }
  .venue-hero__content { grid-template-columns: 1fr; gap: 34px; }
  .venue-hero__image { grid-row: 1; }
  .venue-hero__copy { grid-row: 2; }
  .venue-hero__copy .back-link { margin-bottom: 24px; }
  .venue-hero__image .frame { border-radius: 18px; }
}
@media (max-width: 780px) {
  .home-preview--portfolio .grid { grid-template-columns: repeat(2, 1fr); }
  .home-preview--venues .grid { grid-template-columns: repeat(2, 1fr); }
  .home-preview--portfolio .grid > :nth-child(n+7),
  .home-preview--venues .grid > :nth-child(n+7) { display: none !important; }
}

/* ---------------------------------------------------------------- 그리드 */

.grid { display: grid; gap: 14px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--album { grid-template-columns: repeat(3, 1fr); gap: 26px; }
.portfolio-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin: 0 0 28px; }
.portfolio-tabs button { border: 1px solid rgba(43,39,35,.22); border-radius: 999px; padding: 10px 20px; background: transparent; color: inherit; font: 600 .9rem var(--body); cursor: pointer; }
.portfolio-tabs button:hover { border-color: var(--accent); color: var(--accent); }
.portfolio-tabs button[aria-selected="true"] { background: var(--text); border-color: var(--text); color: var(--bg); }
.portfolio-empty { margin-top: 20px; }
.grid--halls { grid-template-columns: repeat(5, 1fr); gap: 12px; }
.grid--halls-lg { grid-template-columns: repeat(5, 1fr); gap: 16px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); gap: 22px; }

@media (max-width: 1100px) {
  .grid--halls { grid-template-columns: repeat(4, 1fr); }
  .grid--halls-lg { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 860px) {
  .grid--3, .grid--album { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .grid--album { gap: 18px; }
  .portfolio-tabs { gap: 7px; margin-bottom: 20px; }
  .portfolio-tabs button { flex: 1 1 calc(50% - 7px); padding: 9px 10px; }
  .grid--halls, .grid--halls-lg { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .grid--2 { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 520px) {
  .grid--halls, .grid--halls-lg { grid-template-columns: repeat(2, 1fr); }
  .album__name { font-size: 1.25em; }
}

.cell-3x4 { aspect-ratio: 3/4; }
.cell-2x3 { aspect-ratio: 2/3; }

/* 앨범 카드 */
.album__label {
  font-family: var(--body); font-size: .72em; letter-spacing: .16em;
  color: var(--accent); font-weight: 600; margin-top: 18px;
}
.album__name { font-family: var(--head); font-size: 1.7em; margin-top: 6px; line-height: 1.25; }
.album__count { font-family: var(--body); font-size: .88em; opacity: .6; margin-top: 4px; }
.album__go { font-family: var(--body); font-size: .72em; letter-spacing: .14em; color: var(--accent); font-weight: 600; margin-top: 10px; }
.album a { display: block; }
.album a:hover .media { filter: brightness(.94); }
.media { transition: filter .2s; }

/* 웨딩홀 카드 */
.hall-chip {
  display: block; background: #fff; border: 1px solid rgba(43, 39, 35, .14);
  padding: 20px 14px 16px; min-width: 0; transition: border-color .15s, transform .15s;
}
.hall-chip:hover { border-color: var(--accent); transform: translateY(-2px); }
.hall-chip__box {
  aspect-ratio: 2/1; background: #fff; padding: 8px 12px; overflow: hidden;
}
.hall-chip__box .media, .hall-chip__box .ph { width: 100%; height: 100%; border-radius: 2px; }
.hall-chip__name {
  font-family: var(--body); font-size: .72em; font-weight: 600;
  text-align: center; margin-top: 12px; letter-spacing: -.01em;
  overflow-wrap: break-word;
}
.hall-chip__meta {
  font-family: var(--body); font-size: .64em; opacity: .58; text-align: center;
  margin-top: 7px; line-height: 1.45; min-height: 1.45em;
}

.hall-card {
  border: 1px solid rgba(43, 39, 35, .1); border-radius: 6px;
  padding: 20px 16px 16px; background: #fff; display: block;
  transition: border-color .15s, transform .15s;
}
.hall-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.hall-card__img { aspect-ratio: 1/.62; margin-bottom: 14px; border-radius: 3px; overflow: hidden; }
.hall-card__img .media, .hall-card__img .ph { width: 100%; height: 100%; }
.hall-card__name { font-family: var(--body); font-size: .92em; font-weight: 700; text-align: center; overflow-wrap: break-word; }
.hall-card__meta { font-family: var(--body); font-size: .72em; opacity: .5; text-align: center; margin-top: 6px; line-height: 1.4; }

/* 필터 탭 */
.tabs { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 20px; }
.tab {
  font-family: var(--body); font-size: .82em; font-weight: 600; letter-spacing: .04em;
  padding: 10px 20px; border-radius: 30px;
  border: 1px solid var(--line); background: #fff; color: var(--text);
  transition: .15s;
}
.tab:hover { border-color: var(--accent); color: var(--accent); }
.tab[aria-selected="true"] { background: var(--accent); border-color: var(--accent); color: #fff; }

.search-input {
  width: 100%; border: 1px solid rgba(43, 39, 35, .16); border-radius: 8px;
  padding: 15px 18px; font-family: var(--body); font-size: 15px;
  margin-bottom: 14px; background: #fff; color: var(--text);
}
.search-input:focus { outline: none; border-color: var(--accent); }
.result-count { font-family: var(--body); font-size: .85em; opacity: .55; margin-bottom: 22px; }

/* ---------------------------------------------------------------- 상품 */

.prod-tabs { display: flex; gap: 12px; justify-content: center; margin-bottom: 5vh; flex-wrap: wrap; }
.prod-tab {
  font-family: var(--body); font-size: .9em; font-weight: 600; letter-spacing: .1em;
  padding: 12px 34px; border: 1px solid var(--line); border-radius: 2px; background: #fff;
  transition: .15s;
}
.prod-tab[aria-selected="true"] { background: var(--accent); border-color: var(--accent); color: #fff; }

.pkg { border: 1px solid rgba(43, 39, 35, .14); padding: 34px 32px; background: #fff; }
.pkg__title {
  font-family: var(--head); font-size: 1.9em; font-weight: 500;
  border-bottom: 1px solid rgba(43, 39, 35, .14);
  padding-bottom: 16px; margin-bottom: 20px;
}
.pkg__list { display: flex; flex-direction: column; gap: 11px; }
.pkg__item { display: flex; gap: 10px; font-family: var(--body); font-size: 1em; line-height: 1.5; }
.pkg__item span:first-child { color: var(--accent); }
.pkg__item span:last-child { opacity: .82; }

.group-title { text-align: center; font-family: var(--head); font-size: 2em; margin-bottom: 3vh; }
.group { margin-top: 7vh; }
.group--narrow { max-width: 720px; margin-left: auto; margin-right: auto; }

.event-card { border: 1px solid rgba(43, 39, 35, .14); padding: 26px 28px; text-align: center; background: #fff; }
.event-card__title { font-family: var(--head); font-size: 1.4em; font-weight: 500; }
.badge {
  display: inline-block; margin: 12px 0;
  font-family: var(--body); font-size: .82em; font-weight: 700;
  color: var(--accent); background: var(--accent-tint);
  padding: 6px 16px; border-radius: 20px;
}
.event-card__desc { font-family: var(--body); font-weight: 300; font-size: .92em; line-height: 1.7; opacity: .75; white-space: pre-line; }

.pricelist { border-top: 1px solid rgba(43, 39, 35, .16); }
.pricelist__row {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 15px 4px; border-bottom: 1px solid rgba(43, 39, 35, .1);
}
.pricelist__row span:first-child { font-family: var(--body); font-weight: 600; font-size: .98em; }
.pricelist__row span:last-child { font-family: var(--body); color: var(--accent); font-size: 1em; white-space: nowrap; }

.notes {
  max-width: 760px; margin: 5vh auto 0;
  font-family: var(--body); font-weight: 300; font-size: .9em; line-height: 1.8;
  white-space: pre-line; opacity: .62; text-align: center;
}

@media (max-width: 860px) { .pkg { padding: 24px 20px; } .pkg__title { font-size: 1.5em; } }

/* ---------------------------------------------------------------- 리뷰 */

.review-card { display: block; background: #fff; border: 1px solid rgba(43, 39, 35, .08); overflow: hidden; transition: transform .15s; }
.review-card:hover { transform: translateY(-3px); }
.review-card__thumb { aspect-ratio: 4/3; }
.review-card__body { padding: 20px 22px 24px; }
.review-card__title { font-family: var(--head); font-size: 1.35em; line-height: 1.4; font-weight: 500; }
.review-card__go { font-family: var(--body); font-size: .74em; letter-spacing: .14em; color: var(--accent); font-weight: 600; margin-top: 14px; }

/* ---------------------------------------------------------------- Q&A / FAQ */

.qa-list { display: flex; flex-direction: column; }
.qa-item { border-top: 1px solid var(--line); padding: 26px 0; }
.qa-item__q { font-family: var(--head); font-size: 1.4em; display: flex; gap: 14px; line-height: 1.4; }
.qa-item__q .mark { color: var(--accent); flex: none; }
.qa-item__a {
  font-family: var(--body); font-weight: 300; font-size: 1em; line-height: 1.8;
  margin-top: 12px; padding-left: 32px; opacity: .78; white-space: pre-line;
}

/* 게시판형 */
.board { }
.board__head {
  border-bottom: 2px solid var(--text); padding-bottom: 22px; margin-bottom: 0;
}
.board__cols, .board__row-main {
  display: grid; grid-template-columns: 70px 1fr 130px; align-items: center;
}
.board__cols {
  padding: 15px 8px; border-bottom: 1px solid rgba(43, 39, 35, .16);
  font-family: var(--body); font-size: .72em; letter-spacing: .1em; font-weight: 700; color: #a39a8f;
}
.board__row { border-bottom: 1px solid var(--line-soft); width: 100%; text-align: left; display: block; }
.board__row-main { padding: 20px 8px; }
.board__num { text-align: center; font-family: var(--body); font-size: .85em; color: #a39a8f; }
.board__title { padding-left: 8px; font-family: var(--body); font-size: 1.02em; font-weight: 500; }
.board__cat { text-align: center; font-family: var(--body); font-size: .72em; font-weight: 600; color: var(--accent); }
.board__answer { padding: 4px 8px 26px 78px; background: rgba(168, 139, 106, .05); }
.board__answer p { font-family: var(--body); font-weight: 300; font-size: 1em; line-height: 1.85; opacity: .82; white-space: pre-line; }
.board__row[aria-expanded="true"] .board__title { color: var(--accent); }

@media (max-width: 860px) {
  .board__cols, .board__row-main { grid-template-columns: 44px 1fr 76px; }
  .board__answer { padding-left: 52px; }
  .qa-item__q { font-size: 1.15em; }
}

/* ---------------------------------------------------------------- 예약·문의 */

.contact { padding: 11vh var(--pad-x); background: var(--text); color: #f4efe8; }
.contact__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: center;
}
.contact h2 { font-family: var(--head); font-weight: 400; font-size: 3.2em; line-height: 1.15; }
.contact__sub { font-family: var(--body); font-weight: 300; font-size: 1.05em; line-height: 1.8; margin-top: 20px; opacity: .75; white-space: pre-line; }
.contact__list { display: flex; flex-direction: column; gap: 20px; }
.contact__row { border-top: 1px solid rgba(255, 255, 255, .16); padding-top: 16px; }
.contact__label { font-family: var(--body); font-size: .72em; letter-spacing: .14em; opacity: .55; margin-bottom: 6px; }
.contact__value { font-family: var(--head); font-size: 1.6em; }
.contact__value--sm { font-family: var(--body); font-size: 1em; opacity: .9; }
.contact__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.contact__btn {
  font-family: var(--body); font-size: .82em; letter-spacing: .1em; font-weight: 600;
  padding: 14px 26px; border: 1px solid rgba(255, 255, 255, .5); border-radius: 2px;
  transition: .15s;
}
.contact__btn:hover { background: #fff; color: var(--text); }
.contact__btn--kakao { background: #FEE500; border-color: #FEE500; color: #191600; }

@media (max-width: 860px) {
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact h2 { font-size: 2.2em; }
}

/* ---------------------------------------------------------------- 기타 */

.empty { text-align: center; padding: 8vh 0; font-family: var(--body); opacity: .55; font-size: 1.05em; }

.back-link {
  font-family: var(--body); font-size: 12px; letter-spacing: .12em;
  opacity: .6; margin-bottom: 5vh; display: inline-block;
}
.back-link:hover { opacity: 1; }

/* ---------------------------------------------------------------- breadcrumb */

.crumbs-wrap { padding: 16px var(--pad-x) 0; max-width: var(--maxw); margin: 0 auto; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-family: var(--body); font-size: 12px; }
.crumbs li { display: flex; align-items: center; gap: 8px; color: var(--accent); }
.crumbs li:not(:last-child)::after { content: '›'; opacity: .4; color: var(--text); }
.crumbs a { opacity: .7; }
.crumbs a:hover { opacity: 1; color: var(--accent); }
.crumbs [aria-current] { opacity: .55; }

/* ---------------------------------------------------------------- 공지 / 블로그 */

.page-h1 { font-family: var(--head); font-weight: 400; font-size: 3em; line-height: 1.15; }

.notice-list { border-top: 2px solid var(--text); }
.notice-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 6px; border-bottom: 1px solid var(--line-soft); transition: background .12s;
}
.notice-row:hover { background: var(--tint); }
.notice-row__main { display: flex; align-items: center; gap: 12px; min-width: 0; }
.notice-row__pin { flex: none; font-family: var(--body); font-size: .7em; font-weight: 700; color: #fff; background: var(--accent); padding: 3px 9px; border-radius: 5px; }
.notice-row__title { font-family: var(--body); font-size: 1.02em; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.notice-row__date { flex: none; font-family: var(--body); font-size: .8em; opacity: .5; }

.post-card { display: block; background: #fff; border: 1px solid var(--line-soft); overflow: hidden; transition: transform .15s; }
.post-card:hover { transform: translateY(-3px); }
.post-card__thumb { aspect-ratio: 3/2; }
.post-card__body { padding: 20px 22px 24px; }
.post-card__date { font-family: var(--body); font-size: .72em; letter-spacing: .1em; color: var(--accent); font-weight: 600; }
.post-card__title { font-family: var(--head); font-size: 1.5em; line-height: 1.35; font-weight: 500; margin-top: 8px; }
.post-card__excerpt { font-family: var(--body); font-size: .9em; opacity: .7; margin-top: 10px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.post-head { margin-bottom: 4vh; }
.post-head__meta { font-family: var(--body); font-size: .85em; opacity: .5; margin-top: 12px; }
.post-cover { margin-bottom: 4vh; }
.post-cover .frame { aspect-ratio: 16/9; }

/* 본문 서식(새니타이즈된 게시글/페이지) */
.prose { font-family: var(--body); font-size: 1.05em; line-height: 1.9; color: var(--text); }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-family: var(--head); font-size: 1.9em; font-weight: 500; margin-top: 1.8em; }
.prose h3 { font-family: var(--head); font-size: 1.5em; font-weight: 500; margin-top: 1.5em; }
.prose h4 { font-weight: 700; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin-top: .4em; }
.prose img { border-radius: 4px; margin: 1.4em 0; }
.prose blockquote { border-left: 3px solid var(--accent); padding: 4px 0 4px 20px; opacity: .82; font-style: italic; }
.prose code { background: var(--tint); padding: 2px 6px; border-radius: 4px; font-size: .9em; }
.prose pre { background: var(--tint); padding: 16px; border-radius: 8px; overflow-x: auto; }
.prose table { width: 100%; border-collapse: collapse; }
.prose th, .prose td { border: 1px solid var(--line); padding: 8px 12px; text-align: left; }

/* ---------------------------------------------------------------- 예약 신청서 */

.rsv-form { display: flex; flex-direction: column; gap: 22px; }
.rsv-group { border: 1px solid var(--line); border-radius: 12px; padding: 22px 20px; background: #fff; }
.rsv-group legend { font-family: var(--head); font-size: 1.4em; font-weight: 500; padding: 0 8px; color: var(--accent); }
.rsv-field { margin-top: 16px; }
.rsv-field:first-of-type { margin-top: 8px; }
.rsv-label { display: block; font-family: var(--body); font-size: .9em; font-weight: 600; margin-bottom: 7px; }
.rsv-req { color: #C0563F; }
.rsv-in {
  width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px;
  font-family: var(--body); font-size: 1em; background: var(--bg); color: var(--text);
}
.rsv-in:focus { outline: none; border-color: var(--accent); background: #fff; }
textarea.rsv-in { resize: vertical; min-height: 90px; }
.rsv-opts { display: flex; flex-wrap: wrap; gap: 10px 20px; padding: 4px 0; }
.rsv-opt { display: inline-flex; align-items: center; gap: 7px; font-family: var(--body); font-size: .95em; cursor: pointer; }
.rsv-opt input { width: 17px; height: 17px; accent-color: var(--accent); }
.rsv-terms {
  font-family: var(--body); font-size: .82em; line-height: 1.8; color: var(--text);
  opacity: .8; white-space: pre-line; max-height: 220px; overflow-y: auto;
  background: var(--tint); border-radius: 8px; padding: 16px 18px;
}
.rsv-submit { text-align: center; margin-top: 6px; }
.rsv-msg { margin-top: 16px; font-family: var(--body); font-size: .95em; }
.rsv-msg.ok { color: #4B7F52; }
.rsv-msg.err { color: #C0563F; }
.rsv-form.sent .rsv-group, .rsv-form.sent .rsv-submit button { display: none; }

@media (max-width: 860px) { .rsv-group { padding: 18px 15px; } }

/* 홀 상세 하단 CTA */
.cta-strip {
  margin-top: 6vh; padding: 5vh var(--pad-x); background: var(--tint);
  border-radius: 12px; text-align: center;
}
.cta-strip p { font-family: var(--head); font-size: 1.5em; margin-bottom: 20px; }

@media (max-width: 860px) { .page-h1 { font-size: 2.1em; } }

.site-footer {
  padding: 44px var(--pad-x); text-align: center;
  border-top: 1px solid var(--line-soft); font-family: var(--body);
}
.site-footer__brand { font-family: var(--head); font-size: 20px; letter-spacing: .24em; }
.site-footer__line { font-size: 11px; color: rgba(43, 39, 35, .7); margin-top: 8px; letter-spacing: .04em; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center; margin: 18px auto 0; font-size: 12px; }
.site-footer__links a { color: rgba(43, 39, 35, .76); }
.site-footer__links a:hover { color: var(--accent-text); }
@media (max-width: 620px) {
  .site-footer { text-align: left; }
  .site-footer__links {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0; border-top: 1px solid var(--line-soft); margin-top: 20px;
  }
  .site-footer__links a {
    min-width: 0; padding: 11px 8px 11px 0; border-bottom: 1px solid var(--line-soft);
    white-space: normal; word-break: keep-all;
  }
}

/* 라이트박스 */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(18, 15, 12, .94);
  display: flex; align-items: center; justify-content: center;
  padding: 3vh 4vw;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 94vh; object-fit: contain; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; color: #fff; font-size: 30px; line-height: 1;
  padding: 14px 18px; opacity: .75;
}
.lightbox__close { top: 8px; right: 12px; }
.lightbox__prev { left: 6px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 6px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { opacity: 1; }
.lightbox__count {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  color: #fff; opacity: .6; font-family: var(--body); font-size: 12px; letter-spacing: .1em;
}
