/* ─────────────────────────────────────────────
   수상한거리 스테이지 — styles.css
   팔레트: 공연장 어둠 + 무대 조명(마젠타→바이올렛)
   ───────────────────────────────────────────── */
:root {
  --bg:        #0e0c12;   /* 객석의 어둠 (살짝 보라 기운) */
  --bg-2:      #16131d;   /* 한 단 밝은 면 */
  --bg-3:      #1f1a29;   /* 카드/입력 */
  --line:      #2c2537;
  --line-soft: #221c2c;
  --text:      #f1ecf4;
  --text-2:    #b8afc4;
  --text-3:    #7d738a;
  --pink:      #ff4fb5;   /* 무대 조명: 마젠타 */
  --violet:    #7a5cff;   /* 무대 조명: 바이올렛 */
  --glow:      rgba(255, 79, 181, .35);
  --pink-text: #ff7fc9;

  --font-body: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  --font-display: "Bebas Neue", "Noto Sans KR", Impact, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 6px;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  word-break: keep-all;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--pink); outline-offset: 3px;
}
h1, h2, h3, h4 { margin: 0; line-height: 1.25; text-wrap: balance; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
dl, dd, dt { margin: 0; }

.wrap { width: min(100% - var(--gutter) * 2, var(--wrap)); margin-inline: auto; }
.wrap-wide { --wrap: 1400px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--pink); color: #000; padding: 8px 14px; z-index: 1000; }
.skip:focus { left: 8px; }

.label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--pink-text);
  margin-bottom: 14px;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-2);
}
.muted { color: var(--text-3); }

/* ── 버튼 ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px;
  font-weight: 700; font-size: 15px; line-height: 1;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  cursor: pointer; font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(120deg, var(--pink), var(--violet));
  color: #fff;
  box-shadow: 0 8px 28px -8px var(--glow);
}
.btn-primary:hover { box-shadow: 0 12px 34px -8px var(--glow); }
.btn-ghost {
  border-color: rgba(255,255,255,.28);
  color: var(--text);
  background: rgba(255,255,255,.03);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.6); }

/* ── 헤더 ── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 12, 18, .78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 68px; }
.brand img { width: auto; height: 34px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 14.5px; font-weight: 500; color: var(--text-2); padding: 6px 0; position: relative; }
.nav a:hover { color: var(--text); }
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--pink); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  color: #fff !important; padding: 9px 16px !important;
  border: 1px solid var(--pink); border-radius: 999px;
  background: rgba(255, 79, 181, .12);
}
.nav-cta:hover { background: var(--pink); }
.menu-btn {
  display: none; width: 44px; height: 44px; background: none; border: 0; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px; padding: 0;
}
.menu-btn span { display: block; width: 22px; height: 2px; background: var(--text); transition: transform .2s ease, opacity .2s ease; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 히어로 ── */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: min(78vh, 760px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-block: 120px 0;
}
.hero-slides { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: var(--bg-2); }
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%;
  filter: saturate(1.1);
  opacity: 0; transition: opacity 1.4s ease;
  transform: scale(1.04);
}
.hero-bg.is-active { opacity: 1; animation: kenburns 7s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.12); } }
@media (prefers-reduced-motion: reduce) { .hero-bg.is-active { animation: none; transform: none; } }

.hero-nav {
  position: absolute; right: var(--gutter); bottom: 62px; z-index: 2;
  display: flex; align-items: center; gap: 10px;
}
.hero-arrow {
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  background: rgba(14,12,18,.55); color: var(--text); border: 1px solid rgba(255,255,255,.22);
  font-size: 22px; line-height: 1; display: grid; place-items: center;
  transition: background .15s, border-color .15s;
}
.hero-arrow:hover { background: rgba(14,12,18,.85); border-color: rgba(255,255,255,.5); }
.hero-dots { display: flex; gap: 6px; }
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%; padding: 0; border: 0; cursor: pointer;
  background: rgba(255,255,255,.35); transition: background .2s, transform .2s;
}
.hero-dot.is-active { background: var(--pink); transform: scale(1.25); }
.hero-nav[hidden] { display: none; }
.hero-shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 80% 30%, rgba(122, 92, 255, .22), transparent 70%),
    linear-gradient(180deg, rgba(14,12,18,.55) 0%, rgba(14,12,18,.25) 35%, rgba(14,12,18,.92) 78%, var(--bg) 100%);
}
.hero-inner { padding-bottom: 64px; }
.hero h1 {
  font-size: clamp(38px, 6.4vw, 78px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.12;
  margin: 18px 0 20px;
  text-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.hero-sub { font-size: clamp(15px, 1.5vw, 18px); color: var(--text-2); max-width: 46ch; font-weight: 300; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero-marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg);
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .08em;
  color: var(--text-3);
}
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track span { padding: 12px 34px; border-right: 1px solid var(--line-soft); white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── 섹션 공통 ── */
.section { padding-block: clamp(72px, 9vw, 120px); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head h2, .about-head h2, .contact-info h2 {
  font-size: clamp(28px, 3.6vw, 44px); font-weight: 900; letter-spacing: -.02em;
}
.section-sub { color: var(--text-2); margin-top: 14px; font-size: 16.5px; max-width: 60ch; }

/* ── 소개 ── */
.about { background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 5fr 7fr; gap: 48px 64px; align-items: start;
}
.about-body { display: grid; gap: 18px; color: var(--text-2); font-size: 17px; max-width: 62ch; }
.about-body p:first-child { color: var(--text); font-weight: 500; }
.facts {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin-top: 16px;
}
.facts li { padding: 26px 24px 26px 0; display: flex; align-items: baseline; gap: 14px; border-right: 1px solid var(--line); }
.facts li + li { padding-left: 24px; }
.facts li:last-child { border-right: 0; }
.fact-num { font-family: var(--font-display); font-size: 44px; line-height: 1; color: var(--pink-text); font-variant-numeric: tabular-nums; }
.fact-txt { color: var(--text-2); font-size: 15px; }

/* ── 서비스: 큐시트 ── */
.services { background: var(--bg-2); border-block: 1px solid var(--line-soft); }
.cuesheet { border-top: 1px solid var(--line); }
.cue {
  display: grid; grid-template-columns: 110px 1fr auto; gap: 24px; align-items: start;
  padding: 26px 0; border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}
.cue:hover { background: linear-gradient(90deg, rgba(255,79,181,.06), transparent 60%); }
.cue-no { font-family: var(--font-mono); font-size: 13px; letter-spacing: .12em; color: var(--pink-text); padding-top: 6px; }
.cue-main h3 { font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.cue-main p { color: var(--text-2); max-width: 62ch; }
.cue-tag { font-family: var(--font-display); font-size: 18px; letter-spacing: .1em; color: var(--text-3); padding-top: 6px; }

/* ── 갤러리 ── */
.gallery { background: var(--bg); }
.photo-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; grid-auto-flow: dense; gap: 10px;
}
.photo { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--bg-3); }
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .3s ease; }
.photo:hover img { transform: scale(1.04); }
.photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14,12,18,.45));
  opacity: 0; transition: opacity .3s ease;
}
.photo:hover::after { opacity: 1; }
.photo.tall { grid-row: span 2; }
.photo.wide { grid-column: span 2; }

/* ── 소식·공지 ── */
.notices { background: var(--bg); }
.notices[hidden] { display: none; }
.notice-list { border-top: 1px solid var(--line); max-width: 860px; }
.notice { border-bottom: 1px solid var(--line); }
.notice-head {
  display: grid; grid-template-columns: 96px 1fr 28px; align-items: center; gap: 16px;
  width: 100%; padding: 18px 0; background: none; border: 0; color: var(--text);
  font: inherit; text-align: left; cursor: pointer;
}
.notice-head:hover .notice-title { color: var(--pink-text); }
.notice-date { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .08em; color: var(--text-3); font-variant-numeric: tabular-nums; }
.notice-title { font-size: 17px; font-weight: 500; }
.notice-arrow { font-family: var(--font-mono); font-size: 18px; color: var(--text-3); text-align: right; }
.notice-body { padding: 0 0 22px 112px; color: var(--text-2); font-size: 15.5px; max-width: 66ch; }
.notice-body[hidden] { display: none; }

/* ── 렌탈 ── */
.rental { background: var(--bg-2); border-block: 1px solid var(--line-soft); }
.rental-cat {
  display: flex; align-items: baseline; gap: 12px;
  font-size: 22px; font-weight: 700; margin-bottom: 18px;
}
.rental-cat small { font-family: var(--font-display); font-size: 16px; letter-spacing: .12em; color: var(--pink-text); }
.gear-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: clamp(48px, 6vw, 72px); }
.gear { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.gear img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.gear-body { padding: 16px 16px 18px; }
.gear-body h4 { font-family: var(--font-display); font-size: 22px; letter-spacing: .04em; margin-bottom: 6px; }
.gear-body p { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }

.rental-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.gear-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.gear-table th, .gear-table td { text-align: left; padding: 10px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.gear-table thead th { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); font-weight: 500; border-bottom-color: var(--text-3); }
.gear-table td:nth-child(2) { color: var(--text-2); }
.gear-table .num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.gear-table tr.group th { padding-top: 18px; font-size: 13px; font-weight: 700; color: var(--pink-text); border-bottom-color: var(--line-soft); }
.rental-note { color: var(--text-2); font-size: 15px; margin: 22px 0 18px; }

/* ── 문의 ── */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 56px; align-items: start; }
.contact-list { display: grid; gap: 14px; margin: 26px 0 30px; }
.contact-list div { display: grid; grid-template-columns: 72px 1fr; gap: 12px; align-items: baseline; }
.contact-list dt { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; color: var(--text-3); }
.contact-list dd { font-size: 16px; }
.contact-list dd a:hover { color: var(--pink-text); }
.map { position: relative; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--bg-3); }
.map iframe { display: block; width: 100%; height: 280px; border: 0; filter: grayscale(.2) contrast(1.05); }
.map-link { position: absolute; right: 10px; bottom: 10px; font-size: 13px; background: rgba(14,12,18,.85); padding: 6px 10px; border-radius: 4px; border: 1px solid var(--line); }
.map-link:hover { color: var(--pink-text); }

.inquiry {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 10px;
  padding: clamp(22px, 3vw, 36px);
  display: grid; gap: 16px;
}
.inquiry h3 { font-size: 22px; font-weight: 700; }
.form-hint { color: var(--text-3); font-size: 13.5px; margin-top: -8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 6px; }
.field > span, .checks legend { font-size: 13px; color: var(--text-2); font-weight: 500; }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--text);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 11px 13px; transition: border-color .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field input:focus, .field textarea:focus { border-color: var(--pink); outline: none; }
.field input[type="date"] { color-scheme: dark; }
.field textarea { resize: vertical; min-height: 120px; }
.field input.invalid { border-color: #ff6b6b; }
.checks { border: 0; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 10px; }
.checks legend { padding: 0; margin-bottom: 8px; }
.checks label {
  display: inline-flex; align-items: center; gap: 7px; font-size: 14px;
  background: var(--bg); border: 1px solid var(--line); border-radius: 999px; padding: 7px 13px; cursor: pointer;
  white-space: nowrap;
}
.checks label:has(input:checked) { border-color: var(--pink); background: rgba(255,79,181,.1); }
.checks input { accent-color: var(--pink); margin: 0; }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.form-status { font-size: 14px; color: var(--pink-text); min-height: 1.4em; }

/* ── 푸터 ── */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-block: 56px 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; }
.footer-brand img { height: 40px; width: auto; opacity: .9; margin-bottom: 14px; }
.footer-brand p { color: var(--text-3); font-size: 14px; }
.biz { display: grid; gap: 6px; font-size: 13.5px; }
.biz div { display: grid; grid-template-columns: 110px 1fr; gap: 10px; }
.biz dt { color: var(--text-3); }
.biz dd { color: var(--text-2); }
.biz a:hover { color: var(--pink-text); }
.copyright { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 40px; padding-top: 18px; border-top: 1px solid var(--line-soft); font-size: 12.5px; color: var(--text-3); }
.copyright a:hover { color: var(--text); }

/* ── 문의 게시판 ── */
.board { padding-block: clamp(48px, 7vw, 88px); min-height: 70vh; }
.board-wrap { --wrap: 900px; }
.board-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.board-head h1 { font-size: clamp(30px, 4vw, 44px); font-weight: 900; letter-spacing: -.02em; }
.board-head .section-sub { max-width: 58ch; }
.inline-link { color: var(--pink-text); border-bottom: 1px solid rgba(255,127,201,.4); }
.write-form {
  background: var(--bg-3); border: 1px solid var(--pink); border-radius: 10px;
  padding: clamp(20px, 3vw, 32px); display: grid; gap: 16px; margin-bottom: 28px;
}
.write-form[hidden] { display: none; }
.write-form h2 { font-size: 20px; font-weight: 700; }
.write-form .field { display: grid; gap: 6px; }
.write-form .field > span { font-size: 13px; color: var(--text-2); font-weight: 500; }
.write-form .field em { color: var(--pink-text); font-style: normal; }
.write-form .field small { color: var(--text-3); font-weight: 400; }
.write-form input, .write-form textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--text);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 11px 13px;
}
.write-form input:focus, .write-form textarea:focus { border-color: var(--pink); outline: none; }
.write-form textarea { resize: vertical; min-height: 140px; }
.check-inline { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-2); }
.check-inline input { accent-color: var(--pink); margin: 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.board-meta { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; color: var(--text-3); margin-bottom: 8px; min-height: 1.2em; }
.board-note { background: rgba(90,212,142,.12); border: 1px solid rgba(90,212,142,.4); color: #9fe8bd; border-radius: var(--radius); padding: 10px 14px; font-size: 14px; margin-bottom: 12px; }
.board-list { border-top: 2px solid var(--line); }
.board-empty { padding: 40px 0; text-align: center; color: var(--text-3); }
.post { border-bottom: 1px solid var(--line); }
.post-head {
  display: grid; grid-template-columns: 44px 1fr auto 110px 90px; align-items: center; gap: 12px;
  width: 100%; padding: 16px 4px; background: none; border: 0; color: var(--text); font: inherit; text-align: left; cursor: pointer;
}
.post-head:disabled { cursor: default; color: var(--text-3); }
.post-head:not(:disabled):hover .post-title { color: var(--pink-text); }
.post-no { font-family: var(--font-mono); font-size: 12.5px; color: var(--text-3); font-variant-numeric: tabular-nums; }
.post-title { font-size: 16px; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.post-status { font-size: 11.5px; padding: 3px 9px; border-radius: 999px; border: 1px solid var(--line); color: var(--text-3); white-space: nowrap; }
.post-status.done { color: #5ad48e; border-color: rgba(90,212,142,.4); }
.post-name { font-size: 13.5px; color: var(--text-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.post-date { font-family: var(--font-mono); font-size: 12px; color: var(--text-3); text-align: right; font-variant-numeric: tabular-nums; }
.post-body { padding: 4px 4px 22px 56px; color: var(--text-2); font-size: 15.5px; }
.post-body[hidden] { display: none; }
.post-answer { margin-top: 16px; padding: 14px 16px; background: var(--bg-3); border-left: 3px solid var(--pink); border-radius: 0 var(--radius) var(--radius) 0; }
.answer-label { display: block; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; color: var(--pink-text); margin-bottom: 6px; }
.post-answer p { color: var(--text); }
@media (max-width: 700px) {
  .post-head { grid-template-columns: auto 1fr auto; gap: 6px 10px; padding: 14px 2px; }
  .post-no { display: none; }
  .post-title { grid-column: 1 / -1; white-space: normal; }
  .post-status { grid-column: 1; grid-row: 2; }
  .post-name { grid-column: 2; grid-row: 2; font-size: 12.5px; }
  .post-date { grid-column: 3; grid-row: 2; }
  .post-body { padding-left: 2px; }
  .board-head .btn { width: 100%; }
}

/* ── 라이트박스 ── */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(8, 6, 12, .94);
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(92vw, 1400px); max-height: 86vh; object-fit: contain; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lightbox button {
  position: absolute; background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.2);
  width: 46px; height: 46px; border-radius: 50%; font-size: 26px; line-height: 1; cursor: pointer;
}
.lightbox button:hover { background: rgba(255,255,255,.18); }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 16px; left: 0; right: 0; text-align: center; font-family: var(--font-mono); font-size: 12px; color: var(--text-2); letter-spacing: .1em; }

/* ── 반응형 ── */
@media (max-width: 1024px) {
  .gear-grid { grid-template-columns: repeat(3, 1fr); }
  .photo-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .rental-lists { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .menu-btn { display: flex; }
  .nav {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 16px;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 0; font-size: 16px; border-bottom: 1px solid var(--line-soft); }
  .nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 12px; text-align: center; border-bottom: 0 !important; }
  .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .facts li { border-right: 0; border-bottom: 1px solid var(--line-soft); padding: 18px 0; }
  .facts li + li { padding-left: 0; }
  .facts li:last-child { border-bottom: 0; }
  .cue { grid-template-columns: 1fr; gap: 6px; }
  .notice-head { grid-template-columns: 1fr 28px; gap: 4px 12px; }
  .notice-date { grid-column: 1 / -1; }
  .notice-body { padding-left: 0; }
  .cue-tag { display: none; }
  .hero { min-height: 0; padding-block: 96px 0; }
  .hero-nav { right: 16px; bottom: 56px; }
  .hero-inner { padding-bottom: 108px; }
}
@media (max-width: 600px) {
  .gear-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gear-body { padding: 12px; }
  .gear-body h4 { font-size: 19px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 6px; }
  .photo.wide { grid-column: span 2; }
  .field-row { grid-template-columns: 1fr; }
  .biz div { grid-template-columns: 1fr; gap: 0; }
  .contact-list div { grid-template-columns: 1fr; gap: 2px; }
  .gear-table { font-size: 13.5px; }
  .gear-table th, .gear-table td { padding: 9px 6px; }
  .marquee-track span { padding: 10px 22px; font-size: 18px; }
  .hero .eyebrow { font-size: 11px; }
}

/* 게시판 페이지 푸터 간격 */
.page-board .site-footer { padding-block: 24px; }
.page-board .copyright { margin-top: 0; border-top: 0; padding-top: 0; }
