body.hotel-image-page {
  --hotel-paper: #f7f2ea;
  --hotel-ink: #171312;
  --hotel-muted: #736d65;
  --hotel-plum: #2b0f3a;
  --hotel-line: rgba(23, 19, 18, .14);
  margin: 0;
  background: var(--hotel-paper);
  color: var(--hotel-ink);
  font-family: Pretendard, "Noto Sans KR", "Avenir Next", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.hotel-image-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(43, 15, 58, .025) 1px, transparent 1px),
    linear-gradient(rgba(43, 15, 58, .025) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .45;
}

body.hotel-image-page .site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 48px), 1220px);
  min-height: 50px;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 22px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 4px;
  background: rgba(19, 13, 16, .23);
  color: #fffaf2;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .12);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
  transition: background .24s ease, color .24s ease, border-color .24s ease, box-shadow .24s ease;
}

body.hotel-image-page .site-header.is-scrolled,
body.hotel-image-page.menu-open .site-header {
  background: rgba(247, 242, 234, .94);
  color: var(--hotel-ink);
  border-color: rgba(43, 15, 58, .12);
  box-shadow: 0 16px 42px rgba(28, 24, 20, .1);
}

body.hotel-image-page .brand,
body.hotel-image-page .nav-links a,
body.hotel-image-page .lang-link,
body.hotel-image-page .menu-button {
  color: currentColor;
}

body.hotel-image-page .brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  font-weight: 800;
  text-decoration: none;
}

body.hotel-image-page .brand-mark {
  width: 24px;
  height: 24px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(43, 15, 58, .2);
}

body.hotel-image-page .brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body.hotel-image-page .nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: .88rem;
  font-weight: 700;
}

body.hotel-image-page .nav-links a,
body.hotel-image-page .lang-link,
body.hotel-image-page .mobile-menu a {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-decoration: none;
}

body.hotel-image-page .nav-links a:hover,
body.hotel-image-page .nav-links a:focus-visible,
body.hotel-image-page .lang-link:hover,
body.hotel-image-page .lang-link:focus-visible {
  background: transparent;
  color: currentColor;
  text-decoration: underline;
  text-underline-offset: 5px;
}

body.hotel-image-page .header-cta,
body.hotel-image-page .hotel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 19px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 3px;
  background: rgba(255, 255, 255, .88);
  color: #181214;
  font-size: .85rem;
  font-weight: 850;
  text-decoration: none;
}

body.hotel-image-page .site-header.is-scrolled .header-cta,
body.hotel-image-page.menu-open .header-cta {
  background: var(--hotel-ink);
  color: #fffaf2;
  border-color: var(--hotel-ink);
}

body.hotel-image-page .menu-button {
  display: none;
  min-height: 42px;
  padding: 0 6px;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: .9rem;
  font-weight: 800;
}

body.hotel-image-page .mobile-menu {
  position: fixed;
  top: 82px;
  left: 24px;
  right: 24px;
  z-index: 49;
  display: grid;
  gap: 2px;
  padding: 10px;
  border: 1px solid rgba(43, 15, 58, .12);
  border-radius: 4px;
  background: rgba(247, 242, 234, .98);
  box-shadow: 0 28px 72px rgba(20, 17, 15, .18);
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

body.hotel-image-page .mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.hotel-image-page .mobile-menu a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: var(--hotel-ink);
  font-weight: 800;
}

body.hotel-image-page main {
  overflow: clip;
}

body.hotel-image-page .hotel-hero,
body.hotel-image-page .image-chapter,
body.hotel-image-page .final-image-cta {
  position: relative;
  min-height: 100svh;
  display: grid;
  overflow: hidden;
  isolation: isolate;
}

body.hotel-image-page .hotel-hero > img,
body.hotel-image-page .image-chapter > img,
body.hotel-image-page .final-image-cta > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.hotel-image-page .hotel-hero > img {
  object-position: 50% 42%;
}

body.hotel-image-page .image-chapter:nth-of-type(3) > img {
  object-position: 50% 50%;
}

body.hotel-image-page .image-chapter:nth-of-type(4) > img {
  object-position: 48% 48%;
}

body.hotel-image-page .image-chapter:nth-of-type(5) > img {
  object-position: 50% 45%;
}

body.hotel-image-page .hotel-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .08) 36%, rgba(0, 0, 0, .5)),
    linear-gradient(90deg, rgba(0, 0, 0, .48), rgba(0, 0, 0, .05) 58%, rgba(0, 0, 0, .26));
}

body.hotel-image-page .hotel-hero__copy,
body.hotel-image-page .chapter-copy,
body.hotel-image-page .final-image-cta__copy {
  width: min(620px, calc(100% - 44px));
  align-self: end;
  justify-self: start;
  margin: 0 0 clamp(54px, 8vw, 110px) clamp(22px, 7vw, 112px);
  color: #fffaf2;
}

body.hotel-image-page .hotel-hero__copy h1,
body.hotel-image-page .chapter-copy h2,
body.hotel-image-page .final-image-cta__copy h2 {
  margin: 0;
  max-width: 850px;
  font-size: 7.2rem;
  line-height: .94;
  letter-spacing: 0;
  font-weight: 780;
  text-wrap: balance;
  text-shadow: 0 22px 70px rgba(0, 0, 0, .34);
}

body.hotel-image-page .chapter-copy h2,
body.hotel-image-page .final-image-cta__copy h2 {
  font-size: 5.25rem;
}

body.hotel-image-page .hotel-hero__copy p:not(.scene-kicker),
body.hotel-image-page .chapter-copy p:not(.scene-kicker),
body.hotel-image-page .final-image-cta__copy p:not(.scene-kicker) {
  max-width: 500px;
  margin: 20px 0 0;
  font-size: 1.18rem;
  line-height: 1.55;
  color: rgba(255, 250, 242, .9);
  text-shadow: 0 12px 34px rgba(0, 0, 0, .28);
}

body.hotel-image-page .hotel-button {
  margin-top: 28px;
  min-width: 154px;
}

body.hotel-image-page .scene-kicker {
  margin: 0 0 16px;
  font-size: .75rem;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
}

body.hotel-image-page .scroll-cue {
  position: absolute;
  right: clamp(20px, 4vw, 70px);
  bottom: clamp(32px, 4vw, 64px);
  color: rgba(255, 250, 242, .88);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-rl;
}

body.hotel-image-page .quiet-statement {
  min-height: 72svh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 22px;
  padding: 96px 24px;
  text-align: center;
  background: var(--hotel-paper);
}

body.hotel-image-page .quiet-statement .scene-kicker,
body.hotel-image-page .standard-strip .scene-kicker {
  color: var(--hotel-plum);
}

body.hotel-image-page .quiet-statement h2 {
  max-width: 940px;
  margin: 0;
  font-size: 5.3rem;
  line-height: .98;
  letter-spacing: 0;
  font-weight: 780;
  text-wrap: balance;
}

body.hotel-image-page .quiet-statement p:not(.scene-kicker) {
  max-width: 680px;
  margin: 0;
  color: var(--hotel-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

body.hotel-image-page .image-chapter::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .54), rgba(0, 0, 0, .08) 58%, rgba(0, 0, 0, .14)),
    linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .42));
}

body.hotel-image-page .image-chapter--right .chapter-copy {
  justify-self: end;
  margin-right: clamp(22px, 7vw, 112px);
  margin-left: 0;
}

body.hotel-image-page .image-chapter--right::after {
  background:
    linear-gradient(270deg, rgba(0, 0, 0, .56), rgba(0, 0, 0, .08) 58%, rgba(0, 0, 0, .12)),
    linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .42));
}

body.hotel-image-page .standard-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: clamp(34px, 8vw, 120px);
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto;
  padding: clamp(90px, 13vw, 160px) 0;
  align-items: start;
}

body.hotel-image-page .standard-strip h2 {
  max-width: 680px;
  margin: 0;
  font-size: 4.8rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 780;
  text-wrap: balance;
}

body.hotel-image-page .standard-strip ul {
  list-style: none;
  display: grid;
  gap: 0;
  margin: 10px 0 0;
  padding: 0;
  border-top: 1px solid var(--hotel-line);
}

body.hotel-image-page .standard-strip li {
  min-height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--hotel-line);
  color: #403b36;
  font-size: 1rem;
  font-weight: 750;
}

body.hotel-image-page .final-image-cta {
  min-height: 92svh;
}

body.hotel-image-page .seo-service-summary {
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto;
  padding: 82px 0 64px;
  color: var(--hotel-ink);
}

body.hotel-image-page .seo-service-summary .scene-kicker {
  color: var(--hotel-plum);
}

body.hotel-image-page .seo-service-summary h2 {
  max-width: 820px;
  margin: 0;
  font-size: 3rem;
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 780;
  text-wrap: balance;
}

body.hotel-image-page .seo-service-summary p:not(.scene-kicker) {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--hotel-muted);
  font-size: 1.03rem;
  line-height: 1.78;
}

body.hotel-image-page .footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto;
  padding: 28px 0 38px;
  color: #5c554d;
  font-size: .9rem;
  font-weight: 700;
}

body.hotel-image-page .footer a {
  color: var(--hotel-ink);
  text-decoration: none;
}

@media (max-width: 860px) {
  body.hotel-image-page .site-header {
    top: 14px;
    width: calc(100% - 28px);
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
  }

  body.hotel-image-page .nav-links,
  body.hotel-image-page .header-cta {
    display: none;
  }

  body.hotel-image-page .lang-link {
    justify-self: end;
    font-weight: 850;
  }

  body.hotel-image-page .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  body.hotel-image-page .hotel-hero,
  body.hotel-image-page .image-chapter {
    min-height: 92svh;
  }

  body.hotel-image-page .hotel-hero__copy,
  body.hotel-image-page .chapter-copy,
  body.hotel-image-page .final-image-cta__copy {
    width: calc(100% - 36px);
    margin: 0 18px 48px;
  }

  body.hotel-image-page .image-chapter--right .chapter-copy {
    justify-self: start;
    margin-right: 18px;
    margin-left: 18px;
  }

  body.hotel-image-page .hotel-hero__copy h1,
  body.hotel-image-page .chapter-copy h2,
  body.hotel-image-page .final-image-cta__copy h2 {
    font-size: 3.7rem;
    line-height: .98;
  }

  body.hotel-image-page .hotel-hero__copy p:not(.scene-kicker),
  body.hotel-image-page .chapter-copy p:not(.scene-kicker),
  body.hotel-image-page .final-image-cta__copy p:not(.scene-kicker) {
    font-size: .98rem;
    line-height: 1.6;
  }

  body.hotel-image-page .hotel-button {
    width: auto;
    min-width: 144px;
  }

  body.hotel-image-page .scroll-cue {
    display: none;
  }

  body.hotel-image-page .quiet-statement {
    min-height: auto;
    padding: 82px 22px;
  }

  body.hotel-image-page .quiet-statement h2 {
    font-size: 3.2rem;
  }

  body.hotel-image-page .standard-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    padding: 82px 0;
  }

  body.hotel-image-page .standard-strip h2 {
    font-size: 3rem;
  }

  body.hotel-image-page .final-image-cta {
    min-height: 88svh;
  }

  body.hotel-image-page .seo-service-summary {
    width: calc(100% - 36px);
    padding: 66px 0 48px;
  }

  body.hotel-image-page .seo-service-summary h2 {
    font-size: 2.3rem;
  }

  body.hotel-image-page .footer {
    width: calc(100% - 36px);
    flex-direction: column;
    padding-bottom: 30px;
  }
}

@media (max-width: 390px) {
  body.hotel-image-page .hotel-hero__copy h1,
  body.hotel-image-page .chapter-copy h2,
  body.hotel-image-page .final-image-cta__copy h2 {
    font-size: 2.42rem;
  }

  body.hotel-image-page .quiet-statement h2 {
    font-size: 2.32rem;
  }

  body.hotel-image-page .standard-strip h2 {
    font-size: 2.28rem;
  }

  body.hotel-image-page .scene-kicker {
    margin-bottom: 12px;
  }

  body.hotel-image-page .standard-strip li {
    min-height: 58px;
    font-size: .94rem;
  }

  body.hotel-image-page .seo-service-summary h2 {
    font-size: 2rem;
  }
}
