:root {
  --green: #2f6547;
  --soft-green: #e9f0e9;
  --text: #333333;
  --muted: #777777;
  --white: #ffffff;
  --max: 520px;
  --hero-pc: url("https://cdn.imweb.me/thumbnail/20180629/5b361f637ce41.jpg");
  --hero-mobile: url("https://cdn.imweb.me/thumbnail/20230316/dabaa2038bac3.jpg");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.75;
  opacity: 0;
  transition: opacity .28s ease;
}

body.page-ready {
  opacity: 1;
}

body.page-leaving {
  opacity: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  color: white;
  letter-spacing: .03em;
  text-transform: uppercase;
}

body.subpage .site-header {
  position: absolute;
}

.brand img {
  width: 132px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.desktop-nav {
  display: flex;
  gap: 54px;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  text-shadow: 0 1px 8px rgba(0,0,0,.18);
}

.desktop-nav a {
  opacity: .96;
}

.desktop-nav a:hover {
  opacity: .68;
}

.header-icons {
  display: flex;
  gap: 24px;
  align-items: center;
  font-weight: 700;
}

.icon-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: white;
  font: inherit;
  font-size: 18px;
  cursor: pointer;
}

.calendar-icon {
  width: 30px;
  height: 30px;
  border: 2px solid white;
  border-top-width: 6px;
  position: relative;
  opacity: .95;
}

.calendar-icon::before,
.calendar-icon::after {
  content: "";
  position: absolute;
  top: -10px;
  width: 3px;
  height: 8px;
  background: white;
}

.calendar-icon::before { left: 7px; }
.calendar-icon::after { right: 7px; }

.hero {
  position: relative;
  min-height: 100vh;
  background-image: linear-gradient(rgba(0,0,0,.04), rgba(0,0,0,.04)), var(--hero-pc);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  transition: opacity .45s ease-in-out;
}

.slider-dots,
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
}

.slider-dots span,
.gallery-dots span {
  width: 36px;
  height: 2px;
  background: rgba(255,255,255,.65);
}

.slider-dots span.active {
  background: white;
}

.mobile-party-copy {
  display: none;
}

.mobile-check {
  display: none;
}

.section-narrow {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.intro {
  padding: 112px 0 124px;
}

.intro-logo {
  width: 76px;
  margin: 0 auto 40px;
}

.intro h2 {
  margin: 0 0 55px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.015em;
}

.intro p,
.space p {
  margin: 0 auto;
  text-align: left;
  color: #595959;
  font-size: 11px;
  line-height: 1.85;
  letter-spacing: -.01em;
}

.book-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 520px;
  max-width: 100%;
  height: 33px;
  margin: 50px auto 0;
  border-radius: 999px;
  background: #8f8f8f;
  color: white;
  font-size: 9px;
  font-weight: 800;
}

.wide-photo img {
  width: 100%;
  height: 55vw;
  max-height: 560px;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.space {
  padding: 118px 0 126px;
}

.space h2 {
  margin: 0 0 62px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .02em;
  color: #555;
}

.space p + p {
  margin-top: 26px;
}

.more-link {
  display: inline-block;
  margin-top: 52px;
  color: #777;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 0 6px;
  transition: opacity .42s ease;
  position: relative;
}

.gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: opacity .42s ease;
}

.gallery-dots {
  margin: 18px 0 104px;
}

.gallery-dots span {
  background: #bdbdbd;
  width: 26px;
}

.gallery-dots span.active {
  background: #7cc0dc;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.72);
  font-size: 42px;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
  opacity: .8;
  transition: opacity .2s ease, color .2s ease;
}

.gallery-arrow:hover {
  opacity: 1;
  color: white;
}

.gallery-prev {
  left: 24px;
}

.gallery-next {
  right: 24px;
}

.site-footer {
  background: var(--soft-green);
  padding: 62px 20px 72px;
  text-align: center;
  color: #4e4e4e;
  font-size: 11px;
  line-height: 1.9;
}

.site-footer p {
  margin: 4px 0;
}

.sns {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-bottom: 15px;
  color: #777;
  font-size: 20px;
}

.copyright {
  margin-top: 22px !important;
}

.footer-badge {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin: 12px auto 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-weight: 700;
}

.sub-hero {
  min-height: 560px;
  background: center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  transition: opacity .45s ease-in-out;
}

.sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.12));
}

.sub-hero > div {
  position: relative;
  z-index: 1;
  padding-top: 60px;
}

.sub-hero h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: .04em;
}

.sub-hero p {
  margin: 12px 0 0;
  font-size: 15px;
  letter-spacing: .08em;
}

.page-section {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.page-section.narrow {
  width: min(720px, calc(100% - 48px));
}

.page-title {
  margin: 0 0 48px;
  text-align: center;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: .02em;
}

.lead-text {
  color: #555;
  font-size: 15px;
  line-height: 2;
  text-align: center;
  word-break: keep-all;
}

.feature-grid,
.attraction-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 42px;
}

.feature-card img,
.attraction-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  margin-bottom: 24px;
}

.feature-card h3,
.attraction-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 500;
  color: #333;
}

.feature-card .eyebrow,
.attraction-card .eyebrow {
  margin: 0 0 20px;
  color: #777;
  font-size: 14px;
  line-height: 1.6;
}

.feature-card p,
.attraction-card p {
  margin: 0;
  color: #555;
  line-height: 1.9;
}

.info-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}

.info-panel {
  border-top: 1px solid #bbb;
  padding-top: 24px;
}

.info-panel h3 {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 500;
}

.info-panel ul {
  margin: 0;
  padding-left: 18px;
  color: #555;
  line-height: 1.95;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  color: #555;
}

.price-table th,
.price-table td {
  border: 1px solid #d7d7d7;
  padding: 14px 10px;
  text-align: center;
}

.price-table th {
  background: #f6f6f6;
  font-weight: 600;
}

.reservation-notes {
  color: #555;
  line-height: 2;
}

.reservation-notes h3 {
  margin: 42px 0 16px;
  font-size: 21px;
  color: #333;
  font-weight: 500;
}

.reservation-notes ul {
  padding-left: 0;
  list-style: none;
}

.booking-cta {
  display: flex;
  justify-content: center;
  margin: 40px 0 10px;
}

.booking-cta a {
  display: inline-flex;
  min-width: 280px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 800;
}

.location-map {
  width: 100%;
  height: 430px;
  object-fit: cover;
  margin-bottom: 60px;
}

.party-copy {
  text-align: center;
  color: #555;
  line-height: 2;
}

.party-copy h2 {
  color: #333;
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 28px;
}

.party-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 60px;
}

.party-gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.detail-hero {
  height: 330px;
  background: center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.38);
}

.detail-hero h1 {
  position: relative;
  z-index: 1;
  margin: 62px 0 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .04em;
}

.space-intro {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 118px 0 70px;
  text-align: center;
}

.space-intro h2 {
  margin: 0 0 55px;
  color: #666;
  font-size: 16px;
  font-weight: 400;
}

.space-intro-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px;
  text-align: left;
}

.space-intro p {
  margin: 0;
  color: #666;
  font-size: 12px;
  line-height: 1.8;
}

.reservation-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 330px;
  max-width: 100%;
  height: 35px;
  margin-top: 68px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-size: 10px;
  font-weight: 800;
}

.space-big-slider {
  width: min(1140px, calc(100% - 150px));
  margin: 0 auto 118px;
  position: relative;
}

.space-big-slider img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  cursor: zoom-in;
}

.slider-dots.inline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
}

.room-point {
  width: min(860px, calc(100% - 80px));
  margin: 0 auto;
  padding-bottom: 115px;
}

.room-point h2 {
  margin: 0 0 70px;
  text-align: center;
  color: #666;
  font-size: 20px;
  font-weight: 400;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 82px 58px;
}

.room-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  cursor: zoom-in;
}

.room-grid h3 {
  margin: 24px 0 16px;
  text-align: center;
  font-size: 16px;
  color: #555;
}

.room-grid p {
  margin: 0;
  color: #666;
  font-size: 11px;
  line-height: 1.8;
}

.dark-check {
  background: #4d4d4d;
  color: #ddd;
  padding: 58px 0 52px;
}

.dark-check-grid {
  width: min(980px, calc(100% - 100px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.dark-check h3 {
  margin: 0 0 18px;
  padding-top: 14px;
  border-top: 1px solid #aaa;
  color: #f0f0f0;
  font-size: 13px;
}

.dark-check p {
  margin: 0;
  font-size: 11px;
  line-height: 1.9;
}

.dark-reservation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(840px, calc(100% - 100px));
  height: 28px;
  margin: 30px auto 0;
  border: 1px solid #aaa;
  border-radius: 999px;
  color: white;
  font-size: 10px;
  font-weight: 800;
}

.kitchen-intro {
  width: min(780px, calc(100% - 48px));
  margin: 0 auto;
  padding: 135px 0 100px;
  text-align: center;
  color: #777;
}

.kitchen-intro img {
  width: 105px;
  margin: 0 auto 50px;
}

.kitchen-intro h2 {
  margin: 0 0 72px;
  color: #555;
  font-size: 20px;
  font-weight: 700;
}

.kitchen-intro p {
  margin: 0;
  font-size: 15px;
  line-height: 2;
}

.kitchen-meta {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-top: 55px;
  font-size: 14px;
}

.kitchen-slider {
  margin-bottom: 150px;
}

.gallery img,
.wide-photo img,
.feature-card img,
.attraction-card img,
.party-gallery img,
.location-map {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .86);
  opacity: 0;
  transition: opacity .22s ease;
}

.lightbox.open {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: min(92vw, 1200px);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,.45);
}

.lightbox button {
  position: absolute;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}

.lightbox-close {
  right: 28px;
  top: 20px;
  font-size: 38px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 58px;
  padding: 20px;
}

.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

.reveal {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  body {
    font-size: 13px;
    line-height: 1.85;
  }

  .site-header {
    height: 42px;
    padding: 0 15px;
    border-top: 1px solid rgba(255,255,255,.85);
    top: 31px;
    justify-content: center;
  }

  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
  }

  .brand img {
    width: 90px;
    filter: brightness(0) invert(1);
  }

  .desktop-nav,
  .lang-toggle {
    display: none;
  }

  .header-icons {
    position: absolute;
    right: 19px;
    top: -1px;
  }

  .calendar-icon {
    width: 20px;
    height: 20px;
    border-width: 1px;
    border-top-width: 4px;
  }

  .calendar-icon::before,
  .calendar-icon::after {
    top: -7px;
    width: 2px;
    height: 5px;
  }

  .hero {
    min-height: 550px;
    background-image: linear-gradient(rgba(0,0,0,.06), rgba(0,0,0,.08)), var(--hero-mobile);
    background-position: center top;
  }

  .mobile-party-copy {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 63px;
    color: white;
    text-align: center;
    text-shadow: 0 1px 6px rgba(0,0,0,.25);
  }

  .mobile-party-copy h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 11vw, 54px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: .01em;
  }

  .mobile-party-copy p {
    margin: 6px 0 232px;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: 31px;
    line-height: 1;
  }

  .mobile-party-copy a {
    display: inline-block;
    font-size: 16px;
    font-weight: 800;
  }

  .slider-dots {
    bottom: 40px;
    gap: 12px;
  }

  .slider-dots span {
    width: 30px;
  }

  .mobile-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 30px);
    height: 31px;
    margin: 32px auto 0;
    border-radius: 999px;
    background: var(--green);
    color: white;
    font-size: 13px;
    font-weight: 800;
  }

  .section-narrow {
    width: calc(100% - 30px);
  }

  .intro {
    padding: 68px 0 68px;
  }

  .intro-logo {
    width: 95px;
    margin-bottom: 27px;
  }

  .intro h2 {
    margin-bottom: 64px;
    font-size: 17px;
    color: #333;
  }

  .intro p,
  .space p {
    font-size: 13px;
    line-height: 1.95;
    color: #555;
  }

  .book-button {
    display: none;
  }

  .wide-photo img {
    height: 252px;
    min-height: 0;
    object-position: center;
  }

  .space {
    padding: 77px 0 76px;
  }

  .space h2 {
    margin-bottom: 66px;
    font-size: 20px;
  }

  .space p + p {
    margin-top: 22px;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .gallery article:nth-child(2) {
    display: none;
  }

  .gallery img {
    height: 260px;
  }

  .gallery-arrow {
    font-size: 34px;
  }

  .gallery-dots {
    margin: 13px 0 70px;
  }

  .site-footer {
    padding: 50px 20px 58px;
    font-size: 10px;
  }

  .detail-hero {
    height: 250px;
  }

  .detail-hero h1 {
    margin-top: 40px;
  }

  .space-intro {
    width: calc(100% - 30px);
    padding: 70px 0 55px;
  }

  .space-intro-columns,
  .room-grid,
  .dark-check-grid {
    grid-template-columns: 1fr;
  }

  .space-big-slider {
    width: 100%;
    margin-bottom: 75px;
  }

  .space-big-slider img {
    height: 290px;
  }

  .room-point {
    width: calc(100% - 30px);
    padding-bottom: 70px;
  }

  .room-grid {
    gap: 48px;
  }

  .dark-check-grid,
  .dark-reservation {
    width: calc(100% - 34px);
  }

  .kitchen-intro {
    width: calc(100% - 30px);
    padding: 80px 0 65px;
  }

  .kitchen-meta {
    flex-direction: column;
    gap: 10px;
  }

  .sub-hero {
    min-height: 430px;
  }

  .sub-hero h1 {
    font-size: 34px;
  }

  .page-section,
  .page-section.narrow {
    width: calc(100% - 30px);
    padding: 64px 0;
  }

  .page-title {
    font-size: 22px;
    margin-bottom: 34px;
  }

  .lead-text {
    font-size: 14px;
    text-align: left;
  }

  .feature-grid,
  .attraction-grid,
  .info-panels,
  .party-gallery {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .feature-card img,
  .attraction-card img,
  .party-gallery img {
    height: 250px;
  }

  .price-table {
    font-size: 12px;
  }

  .price-table th,
  .price-table td {
    padding: 10px 6px;
  }

  .location-map {
    height: 260px;
  }
}
