:root {
  --bg: #f5f0e8;
  --bg-soft: #fcfaf6;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-accent: #f3ede3;
  --ink: #1f2731;
  --ink-soft: rgba(31, 39, 49, 0.72);
  --accent: #927047;
  --accent-strong: #7b5e3a;
  --line: rgba(31, 39, 49, 0.1);
  --line-strong: rgba(31, 39, 49, 0.18);
  --shadow: 0 28px 70px rgba(24, 30, 40, 0.1);
  --shadow-soft: 0 18px 38px rgba(24, 30, 40, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content-width: min(1280px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Noto Sans KR", "Noto Sans SC", "Noto Sans JP", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(146, 112, 71, 0.12), transparent 34%),
    linear-gradient(180deg, #fbf8f3 0%, #f4eee5 42%, #f8f5ef 100%);
  line-height: 1.65;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.page-shell {
  width: var(--content-width);
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.84);
  backdrop-filter: blur(22px);
  box-shadow: 0 16px 40px rgba(24, 30, 40, 0.08);
}

.site-header.is-scrolled {
  border-color: rgba(146, 112, 71, 0.16);
  box-shadow: 0 20px 48px rgba(24, 30, 40, 0.12);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand-mark {
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.brand-name {
  font-family: "Cormorant Garamond", "Noto Serif KR", "Noto Serif SC", "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(146, 112, 71, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.language-button {
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.language-button:hover,
.language-button:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.language-button.is-active {
  background: var(--ink);
  color: #fffaf3;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.nav-cta,
.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(146, 112, 71, 0.18);
  background: rgba(146, 112, 71, 0.08);
  color: var(--accent-strong);
  font-weight: 700;
}

.header-contact {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface-strong);
  place-items: center;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

main {
  display: grid;
  gap: 26px;
  margin-top: 28px;
}

section {
  position: relative;
}

.hero,
.overview,
.rooms,
.photo-gallery,
.location-section,
.reservation-section,
.site-footer {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 252, 247, 0.92));
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
  padding: 40px;
  border-radius: calc(var(--radius-xl) + 8px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -180px auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(146, 112, 71, 0.18), transparent 70%);
  pointer-events: none;
}

.eyebrow,
.section-kicker,
.card-kicker,
.room-tag {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.site-footer h2,
.hero-subtitle {
  margin: 0;
  font-family: "Cormorant Garamond", "Noto Serif KR", "Noto Serif SC", "Noto Serif JP", serif;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(3.8rem, 8vw, 6.2rem);
  letter-spacing: -0.03em;
}

.hero-subtitle {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
}

.hero-lead {
  max-width: 56ch;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.hero-actions,
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: #fffaf3;
  box-shadow: 0 14px 28px rgba(31, 39, 49, 0.16);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
  color: var(--ink);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-points span,
.channel-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(146, 112, 71, 0.14);
  border-radius: 999px;
  background: rgba(146, 112, 71, 0.08);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.channel-list a {
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.channel-list a:hover,
.channel-list a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(146, 112, 71, 0.24);
  background: rgba(146, 112, 71, 0.14);
  color: var(--ink);
}

.hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 18px;
  align-items: stretch;
}

.hero-main-shot,
.hero-side-shot,
.room-visual,
.gallery-group,
.overview-card,
.location-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.hero-main-shot img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.hero-side-stack {
  display: grid;
  gap: 18px;
}

.hero-side-shot img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.hero-info-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fffdf8 0%, #f6efe4 100%);
  box-shadow: var(--shadow-soft);
}

.hero-info-card strong {
  display: block;
  margin-top: 10px;
  font-family: "Noto Serif KR", "Noto Serif SC", "Noto Serif JP", serif;
  font-size: 1.16rem;
  line-height: 1.5;
}

.hero-info-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.overview,
.rooms,
.photo-gallery,
.location-section,
.reservation-section,
.site-footer {
  padding: 40px;
  border-radius: var(--radius-xl);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading h2,
.site-footer h2 {
  font-size: clamp(2rem, 3.7vw, 2.9rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.section-heading p,
.footer-copy {
  margin: 0;
  color: var(--ink-soft);
}

.overview-grid,
.room-grid,
.location-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.overview-card,
.location-card {
  padding: 28px;
}

.overview-card h3,
.location-card h3,
.gallery-heading h3,
.room-body h3 {
  margin: 12px 0 0;
  font-family: "Noto Serif KR", "Noto Serif SC", "Noto Serif JP", serif;
  font-size: 1.54rem;
  line-height: 1.32;
}

.overview-card p:last-child,
.location-card p:last-child {
  margin-bottom: 0;
}

.room-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.room-card {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.room-media {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.room-body {
  padding: 26px;
}

.room-body h3 {
  margin-top: 10px;
}

.room-body p {
  color: var(--ink-soft);
}

.room-body ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.room-body li {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-accent);
}

.photo-groups {
  display: grid;
  gap: 18px;
}

.gallery-group {
  padding: 26px;
}

.gallery-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  margin-bottom: 18px;
}

.gallery-heading span {
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.photo-item {
  appearance: none;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.photo-item:focus-visible {
  outline: 2px solid rgba(146, 112, 71, 0.5);
  outline-offset: 4px;
  border-radius: 14px;
}

.photo-grid img,
.photo-grid .photo-item img {
  width: 100%;
  aspect-ratio: 16 / 10.8;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #f3efe8;
}

.location-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-list a,
.footer-grid strong a {
  font-weight: 700;
}

.fine-print {
  margin-top: 20px;
  font-size: 0.94rem;
}

.reservation-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 24px;
  align-items: center;
}

.reservation-panel {
  display: grid;
  gap: 18px;
  justify-items: end;
}

.reservation-copy h2 {
  margin: 10px 0 14px;
  font-family: "Cormorant Garamond", "Noto Serif KR", "Noto Serif SC", "Noto Serif JP", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 0.98;
}

.reservation-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.channel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.reservation-note {
  max-width: 420px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  text-align: right;
}

.site-footer {
  margin-top: 26px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: 28px;
  align-items: start;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.footer-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.56);
}

.footer-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-card strong {
  display: block;
  font-family: "Noto Serif KR", "Noto Serif SC", "Noto Serif JP", serif;
  font-size: 1.02rem;
  line-height: 1.5;
}

.footer-address-card {
  min-height: 100%;
}

.footer-address-card strong {
  max-width: 24ch;
}

.footer-contact-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-contact-block + .footer-contact-block {
  padding-top: 18px;
  border-top: 1px solid rgba(31, 39, 49, 0.08);
}

.footer-contact-block span {
  margin-bottom: 8px;
}

.footer-email {
  font-size: 0.94rem;
  line-height: 1.6;
}

.footer-email a {
  word-break: break-word;
}

body[data-lang="zh"] .hero h1,
body[data-lang="zh"] .section-heading h2,
body[data-lang="zh"] .reservation-copy h2,
body[data-lang="zh"] .site-footer h2,
body[data-lang="ja"] .hero h1,
body[data-lang="ja"] .section-heading h2,
body[data-lang="ja"] .reservation-copy h2,
body[data-lang="ja"] .site-footer h2 {
  font-family: "Noto Serif SC", "Noto Serif JP", "Cormorant Garamond", serif;
}

body[data-lang="zh"] .hero-subtitle,
body[data-lang="zh"] .brand-name,
body[data-lang="ja"] .hero-subtitle,
body[data-lang="ja"] .brand-name {
  font-family: "Noto Serif SC", "Noto Serif JP", serif;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 60;
}

.photo-lightbox.is-open {
  display: block;
}

.photo-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 21, 26, 0.84);
}

.photo-lightbox-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
}

.photo-lightbox-stage {
  position: relative;
  margin: 0;
  width: min(92vw, 1100px);
  height: min(80vh, 760px);
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 14px;
}

.photo-lightbox-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.photo-lightbox figcaption {
  color: rgba(243, 248, 255, 0.88);
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
}

.photo-lightbox-close,
.photo-lightbox-nav {
  position: relative;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.photo-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  font-size: 2rem;
}

.photo-lightbox-nav {
  width: 58px;
  height: 58px;
  font-size: 2rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    gap: 18px;
  }

  .header-actions {
    flex-direction: column;
    align-items: flex-end;
  }

  .hero,
  .reservation-section,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    grid-template-columns: minmax(0, 1fr) 220px;
  }

  .overview-grid,
  .room-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reservation-panel {
    justify-items: start;
  }

  .channel-list {
    justify-content: flex-start;
  }

  .reservation-note {
    text-align: left;
  }
}

@media (max-width: 900px) {
  .page-shell {
    width: min(100vw - 24px, 1280px);
    padding-top: 14px;
  }

  .site-header {
    top: 10px;
    grid-template-columns: auto auto;
    padding: 14px 18px;
    border-radius: 24px;
  }

  .menu-toggle {
    display: inline-grid;
    order: 3;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    grid-column: 1 / -1;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.96);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: grid;
    gap: 14px;
    justify-items: start;
  }

  .header-contact {
    display: none;
  }

  .header-actions {
    order: 2;
    justify-self: end;
  }

  .language-switcher {
    padding: 5px;
  }

  .language-button {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .hero,
  .overview,
  .rooms,
  .photo-gallery,
  .location-section,
  .reservation-section,
  .site-footer {
    padding: 26px;
  }

  .hero-visual,
  .overview-grid,
  .room-grid,
  .location-grid,
  .footer-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .footer-address-card strong {
    max-width: none;
  }

  .hero-main-shot img {
    min-height: 420px;
  }

  .hero-side-shot img {
    height: 240px;
  }

  .gallery-heading,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .photo-lightbox-panel {
    padding: 16px;
  }

  .photo-lightbox-nav {
    display: none;
  }

  .photo-lightbox-stage {
    width: min(94vw, 900px);
    height: min(72vh, 640px);
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 3.3rem;
  }

  .hero-subtitle {
    font-size: 1.34rem;
  }

  .section-heading h2,
  .reservation-copy h2,
  .site-footer h2 {
    font-size: 2.25rem;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .language-switcher {
    gap: 4px;
  }

  .language-button {
    padding: 0 8px;
  }

  .hero-actions,
  .map-actions {
    display: grid;
  }

  .gallery-group {
    padding: 18px;
  }
}
