:root{
  --bg:#ffffff;
  --text:#111111;
  --muted:#6a6a6a;
  --line:rgba(0,0,0,.08);
  --footer:#d7d7d7;
  --font-base:"Pretendard Variable","Pretendard",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic",sans-serif;
  --font-script:'Great Vibes','Dancing Script',ui-serif,Georgia,serif;
  --font-body: var(--font-base);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: var(--font-base);
}
body *{
  font-family: var(--font-base);
}
.mBody--guide{
  scroll-padding-top:260px;
}
.hero__title,
.mBrand__logo{
  font-family: var(--font-script) !important;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

/* header */
.mHeader{
  position:relative;
  z-index:100;
}
.mHeader--overlay{
  position:fixed;
  top:0;
  left:0;
  right:0;
  background:transparent;
  transition:background .3s;
  z-index:100;
}
.mHeader--overlay.is-scrolled{
  background:rgba(0,0,0,.85);
  backdrop-filter:blur(8px);
}
.mHeader--solid{
  position:fixed;
  top:0;
  left:0;
  right:0;
  background:#fff;
  border-bottom:1px solid var(--line);
  z-index:100;
  box-shadow:0 2px 8px rgba(0,0,0,.05);
  transition:background .3s, border-color .3s;
}
.mHeader--solid.is-scrolled{
  background:rgba(0,0,0,.85);
  backdrop-filter:blur(8px);
  border-bottom-color:rgba(255,255,255,.1);
}
.mHeader__bar{
  padding:20px 0;
}
.mHeader__barInner{
  max-width:1200px;
  margin:0 auto;
  padding:0 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.mBrand__logo{
  font-family: var(--font-script);
  font-weight:500;
  letter-spacing:.03em;
  font-size:28px;
  color:rgba(255,255,255,.95);
}
.mHeader--solid .mBrand__logo{
  color:#111;
  transition:color .3s;
}
.mHeader--solid.is-scrolled .mBrand__logo{
  color:rgba(255,255,255,.95);
}
.mNav--top{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  font-size:14px;
  letter-spacing:.3em;
  text-transform:uppercase;
}
.mMenuBtn{
  display:none;
  border:none;
  background:transparent;
  color:rgba(255,255,255,.9);
  font-size:12px;
  letter-spacing:.2em;
  text-transform:uppercase;
  cursor:pointer;
}
.mHeader--solid .mMenuBtn{
  color:#111;
}
.mHeader--solid.is-scrolled .mMenuBtn{
  color:rgba(255,255,255,.95);
}
.mNav__topItem{
  color:rgba(255,255,255,.88);
  transition:opacity .2s, color .2s;
  opacity:.92;
}
.mNav__topItem:hover,
.mNav__topItem.is-active{
  opacity:1;
}
.mHeader--solid .mNav__topItem{
  color:#111;
  opacity:.9;
  transition:color .3s, opacity .3s;
}
.mHeader--solid.is-scrolled .mNav__topItem{
  color:rgba(255,255,255,.88);
  opacity:.92;
}
.mHeader--solid.is-scrolled .mNav__topItem:hover,
.mHeader--solid.is-scrolled .mNav__topItem.is-active{
  color:rgba(255,255,255,1);
  opacity:1;
}
.mHeader__titleBar{
  background:#fff;
  padding:36px 0 22px;
  transition:background .3s;
}

/* mobile menu */
.mMenu{
  position:fixed;
  inset:0;
  z-index:200;
  display:none;
}
.mMenu__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.5);
}
.mMenu__panel{
  position:absolute;
  top:0;
  right:0;
  width:min(80vw, 320px);
  height:100%;
  background:#111;
  color:#fff;
  padding:30px 22px;
  display:flex;
  flex-direction:column;
  gap:24px;
}
.mMenu__close{
  align-self:flex-end;
  border:none;
  background:transparent;
  color:#fff;
  font-size:12px;
  letter-spacing:.2em;
  text-transform:uppercase;
  cursor:pointer;
}
.mMenu__nav{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.mMenu__item{
  color:rgba(255,255,255,.85);
  font-size:14px;
  letter-spacing:.2em;
  text-transform:uppercase;
}
.mMenu__item.is-active,
.mMenu__item:hover{
  color:#fff;
}
body.is-menu-open .mMenu{
  display:block;
}
body.is-menu-open{
  overflow:hidden;
}
.mHeader--solid.is-scrolled .mHeader__titleBar{
  background:transparent;
}
.mHeader__titleInner{
  max-width:1200px;
  margin:0 auto;
  padding:0 22px;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:center;
}
.mHeader__pageTitle{
  margin:0;
  font-size:clamp(40px, 6vw, 70px);
  font-weight:300;
  letter-spacing:.02em;
  color:#111;
  text-align:center;
  transition:color .3s;
}
.mHeader--solid.is-scrolled .mHeader__pageTitle{
  color:rgba(255,255,255,.9);
}
.mNav--breadcrumb{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  justify-content:center;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:12px;
  color:#666;
}
.mNav__item{
  color:#666;
  text-transform:lowercase;
  transition:color .2s;
}
.mNav__item:hover,
.mNav__item.is-active{
  color:#111;
}
.mNav__sep{
  color:#999;
  user-select:none;
}
.mNav--sub{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  justify-content:center;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:11px;
  color:#999;
  margin-top:8px;
}
.mNav__subItem{
  color:#999;
  transition:color .2s;
}
.mNav__subItem:hover{
  color:#111;
}
.mHeader--solid.is-scrolled .mNav__subItem{
  color:rgba(255,255,255,.7);
}
.mHeader--solid.is-scrolled .mNav__subItem:hover{
  color:rgba(255,255,255,1);
}
.mNav__subSep{
  color:#ccc;
  user-select:none;
  transition:color .3s;
}
.mHeader--solid.is-scrolled .mNav__subSep{
  color:rgba(255,255,255,.4);
}
.mNav{display:flex; gap:14px; flex-wrap:wrap}
.mNav__link{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:12px;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:rgba(255,255,255,.88);
  opacity:.92;
}
.mNav__link:hover{opacity:1}

/* hero */
.hero{
  position:relative;
  height:min(92vh, 860px);
  min-height:560px;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:0;
  background-image: url("../images/DSC07379.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: contrast(1.02) saturate(1.03);
}
.hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.55));
}
.hero__inner{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  text-align:left;
  padding:0 7vw;
}
.hero__title{
  margin:0;
  font-family: var(--font-script);
  font-size: clamp(64px, 9.5vw, 130px);
  color:rgba(255,255,255,.94);
  font-weight:400;
  letter-spacing:0;
  text-shadow: 0 22px 60px rgba(0,0,0,.60), 0 4px 12px rgba(0,0,0,.35);
  line-height:1;
}
.hero__scroll{
  position:absolute;
  right:48px;
  bottom:34px;
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,.80);
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.hero__scrollArrow{
  width:34px;
  height:34px;
  border:1px solid rgba(255,255,255,.55);
  border-radius:999px;
  position:relative;
}
.hero__scrollArrow::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:10px;
  height:10px;
  border-right:1.5px solid rgba(255,255,255,.85);
  border-bottom:1.5px solid rgba(255,255,255,.85);
  transform: translate(-50%,-55%) rotate(45deg);
}

/* sections */
.mMain{
  min-height:100vh;
  background:#fff;
}
.mMain--calendar{
  padding-top:240px;
}
.mMain--notice{
  padding-top:200px;
}
.mMain--home .mMain__content{
  padding-top:0;
}
.mMain__content{
  padding-top:0;
}
.section{padding:56px 0}
.section--tight{padding:56px 0}
.section--xl{padding:110px 0}
.container{max-width:980px; margin:0 auto; padding:0 22px}
.container--wide{max-width:1400px}
.kicker{
  margin:0 0 10px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:700;
}

/* home layout */
.section--intro{padding:28px 0}
.introBlock{
  max-width:720px;
}
.introBlock__text,
.textImageBlock__paragraph,
.imageTextBlock__paragraph{
  margin:0;
  font-size:16px;
  line-height:1.9;
  color:#2f2f2f;
  letter-spacing:.02em;
  font-weight:500;
  font-family: var(--font-body) !important;
}
.section--photoRight{padding:8px 0 12px}
.photoRight{
  width:min(880px, 86%);
  margin:0 auto;
}
.section--textImage{
  padding:32px 0 40px;
}
.textImageBlock{
  display:flex;
  flex-direction:column;
  gap:32px;
  align-items:center;
}
.textImageBlock__text{
  text-align:center;
  max-width:720px;
}
.textImageBlock__paragraph{
  margin:0;
}
.textImageBlock__slider{
  position:relative;
  width:100%;
  max-width:1600px;
  overflow:hidden;
}
.imageSlider__track{
  position:relative;
  display:flex;
  gap:28px;
  transition:transform .6s ease;
  will-change:transform;
}
.imageSlider__slide{
  flex:0 0 auto;
  width:320px;
  opacity:1;
  transform:none;
  pointer-events:auto;
}
.imageSlider__slide img{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio:3/4;
  object-fit:cover;
}
.imageSlider__btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border:none;
  background:rgba(0,0,0,.5);
  border-radius:999px;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  color:rgba(255,255,255,.9);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:10;
  transition:background .2s, color .2s;
}
.imageSlider__btn:hover{
  background:rgba(0,0,0,.7);
  color:rgba(255,255,255,1);
}
.imageSlider__btn--prev{left:10px}
.imageSlider__btn--next{right:10px}
.section--slider{
  padding:40px 0 50px;
}
.homeSlider{
  position:relative;
  width:min(640px, 80%);
  margin:0 auto;
}
.homeSlider--auto .homeSlider__slide{
  animation: homeSlideFade 13.5s infinite;
}
.homeSlider--auto .homeSlider__slide:nth-child(1){animation-delay:0s}
.homeSlider--auto .homeSlider__slide:nth-child(2){animation-delay:4.5s}
.homeSlider--auto .homeSlider__slide:nth-child(3){animation-delay:9s}
.homeSlider.is-js .homeSlider__slide{
  animation:none;
}
.homeSlider__track{
  position:relative;
  aspect-ratio: 4 / 5;
  overflow:hidden;
  background:#f5f5f5;
}
.homeSlider__slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:scale(1.01);
  transition:opacity .5s ease;
  z-index:1;
}
.homeSlider__slide.is-active,
.homeSlider--auto .homeSlider__slide{
  animation-fill-mode:both;
}
.homeSlider.is-js .homeSlider__slide.is-active{
  opacity:1;
}
.homeSlider__slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.homeSlider__btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:28px;
  height:28px;
  border:none;
  background:transparent;
  border-radius:999px;
  font-size:22px;
  line-height:1;
  cursor:pointer;
  color:rgba(255,255,255,.8);
  text-shadow:0 2px 10px rgba(0,0,0,.45);
  display:flex;
  align-items:center;
  justify-content:center;
}
.homeSlider__btn--prev{left:10px}
.homeSlider__btn--next{right:10px}

/* force base font on UI text */
.mBody,
.mBody .mNav--top,
.mBody .mHeader__pageTitle,
.mBody .mNav--sub,
.mBody .mNav--breadcrumb,
.mBody .mNav__link,
.mBody .hero__scroll,
.mBody .kicker,
.mBody .introBlock__text,
.mBody .ctaLinks,
.mBody .mFooter__meta,
.mBody .mFooter__k,
.mBody .mFooter__v{
  font-family: var(--font-base);
}

@keyframes homeSlideFade{
  0%{opacity:0}
  6%{opacity:1}
  28%{opacity:1}
  34%{opacity:0}
  100%{opacity:0}
}
.section--full{
  padding:32px 0 44px;
}
.fullImage{
  width:100%;
  display:block;
}
.section--imageText{
  padding:36px 0 44px;
}
.imageTextBlock{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:46px;
  align-items:center;
}
.imageTextBlock__image{
  margin:0;
  width:100%;
}
.imageTextBlock__image img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}
.imageTextBlock__text{
  padding-left:20px;
}
.imageTextBlock__paragraph{
  margin:0;
}

@media (max-width: 1100px){
  .imageSlider__slide{width:260px}
  .imageTextBlock{grid-template-columns: 1fr; gap:24px}
  .imageTextBlock__text{padding-left:0}
}
.section--cta{
  padding:40px 0 30px;
}

/* Notice board */
.noticeContent{margin-top:16px}
.noticeList{display:grid; grid-template-columns: repeat(2, 1fr); gap:18px}
.noticeCard{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:20px 22px;
  border:1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  background:#fff;
  color:#1f2937;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.noticeCard:hover{transform: translateY(-2px); box-shadow: 0 14px 34px rgba(15,23,42,.10)}
.noticeCard__title{font-size:18px; font-weight:700; letter-spacing:-.02em}
.noticeCard__excerpt{color:#4b5563; line-height:1.6; font-size:14px}
.noticeCard__meta{color:#94a3b8; font-size:12px}

.noticeDetail{
  border:1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  background:#fff;
  padding:26px 28px;
  box-shadow: 0 14px 36px rgba(15,23,42,.08);
}
.noticeDetail__head{border-bottom:1px solid rgba(15,23,42,.08); padding-bottom:14px; margin-bottom:18px}
.noticeDetail__title{margin:0; font-size:22px; letter-spacing:-.02em}
.noticeDetail__meta{margin-top:8px; color:#94a3b8; font-size:12px}
.noticeDetail__body{color:#374151; line-height:1.8; font-size:15px; white-space:pre-wrap}
.noticeDetail__actions{margin-top:18px}
.noticeBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius: 999px;
  border:1px solid rgba(15,23,42,.12);
  background:#f8fafc;
  color:#0f172a;
  font-size:13px;
}

.noticePager{
  margin-top:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}
.noticePager__btn{
  padding:8px 12px;
  border-radius: 999px;
  border:1px solid rgba(15,23,42,.12);
  background:#fff;
  font-size:13px;
}
.noticePager__pages{display:flex; gap:6px; flex-wrap:wrap; justify-content:center}
.noticePager__page{
  width:32px; height:32px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius: 999px;
  border:1px solid rgba(15,23,42,.12);
  font-size:13px;
}
.noticePager__page.is-active{background:#111827; color:#fff; border-color:#111827}

@media (max-width: 980px){
  .noticeList{grid-template-columns:1fr}
  .noticeDetail{padding:20px}
}
.ctaLinks{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.ctaLinks__item{
  color:#111;
}

.about{
  display:grid;
  grid-template-columns: 1fr;
  gap:28px;
  align-items:start;
}
.about__copy{text-align:center}
.about__text{
  margin:0 auto;
  max-width:68ch;
  font-size:14px;
  line-height:1.9;
  color:#444;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
}
.about__figure{
  width:min(560px, 92%);
  margin:0 auto;
  border:1px solid var(--line);
  background:#fff;
}
.about__figure img{width:100%; height:auto}

.mosaic{
  display:grid;
  grid-template-columns: 1.2fr 1.2fr .6fr;
  gap:14px;
  align-items:stretch;
}
.mosaic__item{
  border:1px solid var(--line);
  background:#fff;
  overflow:hidden;
}
.mosaic__item img{width:100%; height:100%; object-fit:cover}
.mosaic__item--a{aspect-ratio: 4/3}
.mosaic__item--b{aspect-ratio: 4/3}
.mosaic__item--c{aspect-ratio: 3/4}

.portrait{
  width:min(560px, 92%);
  margin:0 auto;
  border:1px solid var(--line);
  background:#fff;
}
.portrait img{width:100%; height:auto}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.split__left{
  border:1px solid var(--line);
  background:#fff;
}
.split__left img{width:100%; height:auto}
.strip{
  border:1px solid var(--line);
  background:#fff;
}
.strip img{width:100%; height:auto}
.miniNote{
  margin-top:12px;
  padding:14px 0 0;
  border-top:1px solid var(--line);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
}
.miniNote__k{
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:800;
}
.miniNote__v{margin-top:10px; color:#444; line-height:1.8; font-size:13px}
.miniNote__cta{display:inline-block; margin-top:10px; color:#111; text-decoration:underline; text-underline-offset:3px}

.endShot{
  width:min(720px, 94%);
  margin:0 auto;
  border:1px solid var(--line);
  background:#fff;
}
.endShot img{width:100%; height:auto}

/* Space page */
.spacePage{
  padding:30px 0 80px;
}
.spaceHero{
  margin-bottom:36px;
  position:relative;
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}
.spaceHero__slider{
  position:relative;
  width:100%;
  overflow:hidden;
}
.spaceHero__track{
  position:relative;
  height:auto;
  aspect-ratio:16/9;
  min-height:420px;
  overflow:hidden;
  background:#f5f5f5;
}
.spaceHero__slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:scale(1.01);
  transition:opacity .6s ease;
  z-index:1;
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.spaceHero__slide.is-active{
  opacity:1;
  z-index:2;
}
.spaceHero__slide img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}
.spaceHero__btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border:none;
  background:rgba(0,0,0,.5);
  border-radius:999px;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  color:rgba(255,255,255,.9);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:10;
  transition:background .2s, color .2s;
}
.spaceHero__btn:hover{
  background:rgba(0,0,0,.7);
  color:rgba(255,255,255,1);
}
.spaceHero__btn--prev{left:20px}
.spaceHero__btn--next{right:20px}
.spaceRow{
  display:grid;
  grid-template-columns: 1.6fr 1fr;
  gap:40px;
  align-items:start;
  margin-bottom:40px;
}
.spaceRow--02{
  margin-top:10px;
  margin-bottom:24px;
}
.spaceRow__image{
  margin:0;
}
.spaceRow__image img{
  width:100%;
  height:auto;
  display:block;
}
.spaceRow__text{
  padding-top:8px;
}
.spaceRow__text--right{
  text-align:right;
}
.spaceRow__num{
  margin:0 0 12px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:clamp(40px, 4.5vw, 64px);
  font-weight:300;
  color:#111;
  line-height:1;
  scroll-margin-top:280px;
}
.spaceRow__desc{
  margin:0;
  font-size:14px;
  line-height:1.8;
  color:#444;
}
.spaceSolo{
  margin:20px auto 24px;
}
.spaceSolo__image{
  margin:0 auto;
  max-width:900px;
}
.spaceSolo__image img{
  width:100%;
  height:auto;
  display:block;
}
.spaceWide{
  margin:20px 0 36px;
}
.spaceWide__image{
  margin:0;
}
.spaceWide__image img{
  width:100%;
  height:auto;
  display:block;
}
.spaceGrid{
  margin-bottom:30px;
}
.spaceGrid__row{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:18px;
  max-width:680px;
}
.spaceGrid__item{
  margin:0;
}
.spaceGrid__item img{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio:1/1;
  object-fit:cover;
}
.spaceDJ{
  margin-top:10px;
}
.spaceDJ__image{
  margin:0;
}
.spaceDJ__image img{
  width:100%;
  height:auto;
  display:block;
}

/* Info/Contact/Reservation/Location/Calendar/Notice pages */
.infoPage,
.contactPage,
.reservationPage,
.locationPage,
.calendarPage,
.noticePage{
  padding:80px 0 100px;
}
.mMain--notice .noticePage{
  padding-top:30px;
}
.infoContent,
.contactContent,
.reservationContent,
.locationContent,
.calendarContent,
.noticeContent{
  max-width:680px;
  margin:0 auto;
}
.infoContent__item{
  margin-bottom:40px;
}
.infoContent__item:last-child{
  margin-bottom:0;
}
.infoContent__title,
.locationContent__title{
  margin:0 0 12px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:18px;
  font-weight:600;
  color:#111;
}
.infoContent__text{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:14px;
  line-height:1.9;
  color:#444;
}
.contactContent__item{
  margin-bottom:28px;
  display:flex;
  gap:20px;
  align-items:baseline;
}
.contactContent__item:last-child{
  margin-bottom:0;
}
.contactContent__k{
  min-width:80px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#666;
}
.contactContent__v{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:14px;
  color:#111;
}
.reservationContent__text,
.calendarContent__text,
.noticeContent__text{
  margin:0 0 32px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:14px;
  line-height:1.9;
  color:#444;
  text-align:center;
}
.reservationContent__cta,
.calendarContent__cta{
  text-align:center;
}

/* Calendar page */
.container--calendar{
  max-width:1000px;
}
.calendarPage{
  padding:60px 0 100px;
}

.calendarControlsBar{
  margin-bottom:14px;
  padding:14px 0 10px;
  background:#fff;
  border:1px solid #eee;
  border-radius:6px;
}
.calendarPicker{
  display:flex;
  gap:8px;
  align-items:center;
}
.calendarSelect{
  border:1px solid #ddd;
  background:#fff;
  border-radius:6px;
  padding:8px 10px;
  font-size:13px;
}
.calendarToday{
  border:1px solid #ddd;
  background:#fff;
  border-radius:6px;
  padding:8px 10px;
  font-size:12px;
  cursor:pointer;
}
.calendarToday:hover{background:#f5f5f5}

.calendarGridHeader{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  border:1px solid #ddd;
  border-bottom:none;
  border-radius:4px 4px 0 0;
  overflow:hidden;
  background:#f8f8f8;
}
.calendarHeaderCell{
  padding:12px 8px;
  font-size:12px;
  font-weight:600;
  color:#666;
  text-align:center;
  border-right:1px solid #eee;
}
.calendarHeaderCell:last-child{border-right:none}
.calendarSticky{
  position:sticky;
  top:170px;
  z-index:5;
  padding:14px 0 10px;
  margin-bottom:14px;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid #eee;
}
.calendarControls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  margin-bottom:8px;
  flex-wrap:wrap;
}
.calendarLegend{
  display:flex;
  justify-content:flex-end;
  gap:18px;
  font-size:12px;
  color:#666;
  margin-bottom:0;
}
.calendarLegend__item{
  display:flex;
  align-items:center;
  gap:6px;
}
.calendarLegend__dot{
  width:10px;
  height:10px;
  border-radius:50%;
  display:inline-block;
}
.calendarLegend__dot--available{background:#e8f5e9; border:1px solid #a5d6a7;}
.calendarLegend__dot--unavailable{background:#fff5f5; border:1px solid #ef9a9a;}
.calendarNav{
  width:32px;
  height:32px;
  padding:0;
  border:none;
  background:transparent;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:18px;
  color:#111;
  cursor:pointer;
  transition:color .2s;
  display:flex;
  align-items:center;
  justify-content:center;
}
.calendarNav:hover{
  color:#666;
}
.calendarMonthYear{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:18px;
  font-weight:700;
  color:#111;
  min-width:160px;
  text-align:center;
}
.calendarViewToggle{
  display:flex;
  gap:0;
  border:1px solid #ddd;
  border-top:none;
  border-radius:0 0 4px 4px;
  overflow:hidden;
  margin-left:auto;
}
.calendarViewBtn{
  padding:6px 14px;
  border:none;
  background:#fff;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:12px;
  color:#666;
  cursor:pointer;
  transition:all .2s;
  border-right:1px solid #ddd;
}
.calendarViewBtn:last-child{
  border-right:none;
}
.calendarViewBtn:hover{
  background:#f5f5f5;
}
.calendarViewBtn--active{
  background:#d32f2f;
  color:#fff;
}
.calendarViewBtn--active:hover{
  background:#b71c1c;
}
.calendarGrid{
  border:1px solid #ddd;
  border-top:none;
  border-radius:0 0 4px 4px;
  overflow:hidden;
  background:#fff;
}
.calendarRow{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  border-bottom:1px solid #eee;
}
.calendarRow:last-child{
  border-bottom:none;
}
.calendarRow--header{
  background:#f8f8f8;
  border-bottom:2px solid #ddd;
}
.calendarCell{
  min-height:80px;
  padding:8px;
  border-right:1px solid #eee;
  position:relative;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
}
.calendarDayNum{
  position:absolute;
  top:8px;
  left:8px;
}
.calendarStatus{
  position:absolute;
  left:8px;
  bottom:8px;
  font-size:11px;
  font-weight:700;
  padding:4px 8px;
  border-radius:999px;
  letter-spacing:-.02em;
}
.calendarStatus--unavailable{
  background:rgba(211,47,47,.10);
  border:1px solid rgba(211,47,47,.25);
  color:#b71c1c;
}
.calendarCell:last-child{
  border-right:none;
}
.calendarCell--header{
  min-height:auto;
  padding:12px 8px;
  font-size:12px;
  font-weight:600;
  color:#666;
  text-align:center;
  background:#f8f8f8;
}
.calendarCell--otherMonth{
  background:#fafafa;
  color:#ccc;
}
.calendarDayNum{
  font-size:14px;
  color:#111;
  font-weight:400;
}
.calendarCell--otherMonth .calendarDayNum{
  color:#ccc;
}
.calendarCell--selected .calendarDayNum{
  width:24px;
  height:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px solid #d32f2f;
  border-radius:50%;
  color:#d32f2f;
  font-weight:600;
}
.calendarCell--hasBooking{
  background:#fff5f5;
}
.calendarCell--hasBooking .calendarDayNum{
  font-weight:600;
}
.calendarCell--available{
  background:#f8fff8;
}
.calendarCell--available .calendarDayNum{
  font-weight:500;
}
.btn{
  display:inline-block;
  padding:14px 32px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:13px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  text-decoration:none;
  border:1px solid #111;
  background:#111;
  color:#fff;
  transition:all .2s;
}
.btn:hover{
  background:#fff;
  color:#111;
}
.locationContent__text{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:14px;
  line-height:1.9;
  color:#444;
}
.locationContent__map{
  margin-top:40px;
  padding:60px 20px;
  background:#f8f8f8;
  border:1px solid var(--line);
  text-align:center;
}
.locationContent__note{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:13px;
  color:#999;
}

/* Location page - new structure */
.locationSection{
  margin-bottom:100px;
}
.locationSection:last-of-type{
  margin-bottom:0;
}
.locationSection__title,
.contactSection__title{
  margin:0 0 40px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:clamp(32px, 5vw, 48px);
  font-weight:700;
  color:#111;
  text-align:center;
  letter-spacing:-.02em;
}
.locationSection__content{
  max-width:900px;
  margin:0 auto;
}
.locationInfo{
  margin-bottom:32px;
  text-align:center;
}
.locationInfo__address{
  margin:0 0 16px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:16px;
  font-weight:500;
  color:#111;
  line-height:1.6;
}
.locationInfo__parking{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:14px;
  line-height:1.8;
  color:#666;
}
.locationMap{
  width:100%;
  height:500px;
  border:1px solid #ddd;
  border-top:none;
  border-radius:0 0 4px 4px;
  overflow:hidden;
  background:#fff;
  position:relative;
  display:block;
  text-decoration:none;
  color:inherit;
  transition:transform .2s, box-shadow .2s;
}
.locationMap:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(0,0,0,0.15);
}
.locationMap__frame{
  width:100%;
  height:100%;
  border:0;
  display:block;
}
.locationMap__overlay{
  position:absolute;
  left:20px;
  bottom:20px;
  background:rgba(0,0,0,.65);
  color:#fff;
  padding:14px 16px;
  border-radius:6px;
  display:flex;
  flex-direction:column;
  gap:8px;
  max-width:calc(100% - 40px);
  z-index:2;
}
.locationMap__hint{
  font-size:12px;
  opacity:0.85;
}
.locationMap__icon{
  font-size:64px;
  margin-bottom:8px;
  opacity:0.9;
}
.locationMap__title{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:14px;
  font-weight:600;
  margin:0;
}
.locationMap__address{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:12px;
  margin:0;
  opacity:0.95;
  line-height:1.6;
}
.locationMap__buttons{
  display:flex;
  gap:8px;
}
.locationMap__btn{
  padding:8px 16px;
  background:rgba(255,255,255,0.95);
  border-radius:4px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:12px;
  font-weight:500;
  text-decoration:none;
  box-shadow:0 2px 8px rgba(0,0,0,0.15);
  transition:background .2s, transform .2s;
  display:inline-block;
}
.locationMap__btn:hover{
  background:#fff;
  transform:translateY(-1px);
  box-shadow:0 4px 12px rgba(0,0,0,0.2);
}
.locationMap__btn--naver{
  color:#03c75a;
}
.locationMap__btn--google{
  color:#4285f4;
}

.contactSection{
  margin-top:100px;
}
.contactSection__content{
  max-width:600px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:24px;
}
.contactCard{
  display:flex;
  align-items:center;
  gap:18px;
  padding:18px 20px;
  border:1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  background:#fff;
  box-shadow: 0 12px 30px rgba(15,23,42,.08);
}
.contactCard__icon{
  width:44px;
  height:44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, #111827, #4b5563);
  color:#fff;
}
.contactCard__body{display:flex; flex-direction:column; gap:6px}
.contactCard__label{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:12px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#6b7280;
}
.contactCard__value{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:16px;
  font-weight:600;
  color:#111;
}
.contactCard__value:hover{color:#111; opacity:.7}

/* Guide page */
.guideHero{
  width:100%;
  height:auto;
  overflow:hidden;
  background:#1a1a1a;
}
.guideHero__image{
  width:100%;
  height:100%;
}
.guideHero__image img{
  width:100%;
  height:auto;
  object-fit:contain;
  opacity:1;
}
.guidePage{
  padding:80px 0 100px;
}
.guideSection{
  margin-bottom:80px;
  scroll-margin-top:260px;
}
.guideSection:last-child{
  margin-bottom:0;
}
.guideSection__title{
  margin:0 0 24px;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:24px;
  font-weight:600;
  color:#111;
  letter-spacing:-.01em;
}
.guideSection__content{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:14px;
  line-height:1.9;
  color:#444;
}
.guideSection__content p{
  margin:0 0 16px;
}
.guideSection__content p:last-child{
  margin-bottom:0;
}
.guideList{
  margin:16px 0 0;
  padding-left:20px;
  list-style:none;
}
.guideList li{
  position:relative;
  margin-bottom:10px;
  padding-left:16px;
}
.guideList li::before{
  content:"•";
  position:absolute;
  left:0;
  color:#666;
}
.guideList li:last-child{
  margin-bottom:0;
}
.guideImage{
  margin:32px 0 0;
  max-width:600px;
  border:1px solid var(--line);
  background:#fff;
  overflow:hidden;
}
.guideImage img{
  width:100%;
  height:auto;
  display:block;
}

/* footer */
.mFooter{
  background: var(--footer);
  padding:34px 0;
  margin-top:40px;
}
.mFooter--mogs{
  background:#d7d7d7;
  color:#111;
  margin-top:0;
  padding:50px 0 30px;
}
.mFooter--mogs .mFooter__inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 22px;
}
.mFooter__top{
  display:grid;
  grid-template-columns: 1fr 1.8fr;
  gap:40px;
  margin-bottom:30px;
  align-items:start;
}
.mFooter--mogs .mFooter__brand{
  font-family: 'Dancing Script', ui-serif, Georgia, serif;
  font-weight:600;
  font-size:28px;
  letter-spacing:.02em;
  color:#111;
  line-height:1.2;
}
.mFooter__right{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.mFooter__icons{
  display:flex;
  gap:12px;
  margin-bottom:4px;
}
.mFooter__icon{
  width:24px;
  height:24px;
  color:#111;
  opacity:.8;
  transition:opacity .2s;
}
.mFooter__icon:hover{
  opacity:1;
}
.mFooter__phone{
  font-size:24px;
  font-weight:700;
  color:#111;
  letter-spacing:.02em;
  margin-bottom:8px;
}
.mFooter__info{
  font-size:11px;
  line-height:1.6;
  color:#333;
  letter-spacing:.01em;
}
.mFooter__divider{
  height:1px;
  background:rgba(0,0,0,.15);
  margin:24px 0;
}
.mFooter__bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:11px;
  color:#666;
}
.mFooter__copyright{
  letter-spacing:.01em;
}
.mFooter__links{
  display:flex;
  gap:16px;
}
.mFooter__link{
  color:#666;
  transition:color .2s;
  letter-spacing:.01em;
}
.mFooter__link:hover{
  color:#111;
}
.mFooter__brand{
  font-family: 'Dancing Script', ui-serif, Georgia, serif;
  font-weight:600;
  font-size:22px;
  letter-spacing:.02em;
  color:#222;
}
.mFooter__meta{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:12px;
  color:#333;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px 14px;
}
.mFooter__row{display:flex; gap:10px; align-items:baseline}
.mFooter__k{width:64px; color:#4a4a4a; font-weight:800; letter-spacing:.08em}
.mFooter__v{color:#222; font-weight:650}
.mFooter__row--wide{grid-column: 1 / -1}
.mFooter__up{
  position:absolute;
  right:22px;
  bottom:34px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:0;
  border:none;
  background:transparent;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo","Noto Sans KR","Malgun Gothic", sans-serif;
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.80);
  cursor:pointer;
  transition:color .2s;
}
.mFooter__up:hover{
  color:rgba(255,255,255,1);
}
.mFooter__upArrow{
  font-size:16px;
  line-height:1;
}

@media (max-width: 880px){
  .hero{min-height:520px}
  .mHeader__barInner{padding:14px 16px}
  .mNav--top{display:none}
  .mMenuBtn{display:block}
  .hero__inner{padding:0 6vw 6vh}
  .hero__scroll{right:20px; bottom:20px}
  .section{padding:36px 0}
  .section--xl{padding:72px 0}
  .section--intro{padding:20px 0}
  .introBlock__text{font-size:15px}
  .section--photoRight{padding:12px 0 18px}
  .photoRight{width:100%}
  .textImageBlock{gap:20px}
  .textImageBlock__paragraph{font-size:15px}
  .homeSlider{width:100%}
  .homeSlider__btn--prev{left:8px}
  .homeSlider__btn--next{right:8px}
  .imageSlider__track{gap:16px}
  .imageSlider__slide{width:220px}
  .ctaLinks{align-items:flex-start}
  .mosaic{grid-template-columns: 1fr; }
  .mosaic__item--c{aspect-ratio: 4/3}
  .split{grid-template-columns: 1fr}
  .mFooter__inner{grid-template-columns: 1fr}
  .mFooter__meta{grid-template-columns: 1fr}
  .mFooter__top{
    grid-template-columns: 1fr;
    gap:24px;
  }
  .mFooter__phone{
    font-size:20px;
  }
  .mFooter__info{
    font-size:10px;
  }
  .mFooter__bottom{
    flex-direction:column;
    gap:12px;
    align-items:flex-start;
  }
  .mHeader__titleBar{padding:20px 0 16px}
  .mHeader__pageTitle{font-size:clamp(32px, 8vw, 56px)}
  .mNav--breadcrumb{font-size:11px; gap:6px}
  .mBody--guide{scroll-padding-top:210px}
  .spaceHero{margin-bottom:24px}
  .spaceRow{
    grid-template-columns: 1fr;
    gap:18px;
    margin-bottom:28px;
  }
  .spaceRow__text--right{text-align:left}
  .spaceSolo{margin:16px 0 20px}
  .spaceWide{margin:16px 0 24px}
  .spaceGrid__row{
    max-width:100%;
    grid-template-columns: 1fr 1fr;
  }
  .mFooter__up{
    position:static;
    margin-top:20px;
  }
  .guideHero{
    height:auto;
  }
  .guidePage{
    padding:60px 0 80px;
  }
  .guideSection{
    margin-bottom:60px;
    scroll-margin-top:210px;
  }
  .guideSection__title{
    font-size:20px;
    margin-bottom:8px;
  }
  .mNav--sub{
    font-size:10px;
    gap:6px;
  }
  .mHeader__topbarInner{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }
  .mNav--top{
    font-size:10px;
    gap:12px;
  }
  .mMain--calendar{padding-top:210px}
  .mMain--notice{padding-top:180px}
  .mMain--notice .noticePage{padding-top:20px}
  .calendarSticky{top:130px}
  .calendarControls{
    gap:12px;
  }
  .calendarHeaderCell{padding:10px 6px; font-size:11px}
  .calendarMonthYear{
    font-size:14px;
    min-width:100px;
  }
  .calendarViewToggle{
    margin-left:0;
  }
  .calendarCell{
    min-height:60px;
    padding:6px;
  }
  .calendarDayNum{top:6px; left:6px}
  .calendarStatus{left:6px; bottom:6px; font-size:10px; padding:3px 7px}
  .calendarDayNum{
    font-size:12px;
  }
  .calendarCell--selected .calendarDayNum{
    width:20px;
    height:20px;
    font-size:11px;
  }
  .locationSection,
  .contactSection{
    margin-bottom:60px;
  }
  .locationSection__title,
  .contactSection__title{
    font-size:clamp(24px, 6vw, 36px);
    margin-bottom:32px;
  }
  .locationMap{
    height:400px;
  }
  .contactSection__content{
    gap:20px;
  }
}


