/* ============================================================
   골목별장 (GOLMOK BYEOLJANG) — Design System
   Mood: Minimal Neutral — white/gray canvas + warm wood/beige accent
   Structural rhythm borrowed from Apple-style alternating tiles
   ============================================================ */

:root {
  /* ---- Color ---- */
  --ink: #1c1a17;
  --body: #1c1a17;
  --body-on-dark: #f7f4ef;
  --body-muted: #6b6560;
  --body-muted-on-dark: #c9c2b8;
  --ink-muted-48: #9a938a;

  --canvas: #ffffff;
  --canvas-warm: #faf7f2;
  --surface-sand: #efe8dd;
  --surface-dark-1: #262220;
  --surface-dark-2: #2c2724;
  --surface-dark-3: #201d1b;
  --surface-black: #171512;

  --accent: #a9835a;       /* wood / beige point color */
  --accent-deep: #8a6a45;
  --accent-soft: #d9c4a3;
  --accent-on-dark: #d3ac7d;

  --hairline: #e6e0d5;
  --hairline-dark: rgba(255,255,255,0.12);
  --divider-soft: rgba(28,26,23,0.06);

  --shadow-elev: rgba(28, 22, 14, 0.18) 3px 8px 30px 0px;
  --shadow-card: rgba(28, 22, 14, 0.08) 0px 2px 16px 0px;

  /* ---- Radius ---- */
  --r-none: 0px;
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 9999px;

  /* ---- Spacing ---- */
  --sp-xxs: 4px;
  --sp-xs: 8px;
  --sp-sm: 12px;
  --sp-md: 18px;
  --sp-lg: 28px;
  --sp-xl: 40px;
  --sp-xxl: 64px;
  --sp-section: 96px;
  --sp-section-sm: 56px;

  /* ---- Type ---- */
  --font: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont,
          'Noto Sans KR', 'Noto Sans SC', 'Noto Sans JP', 'Malgun Gothic',
          system-ui, Roboto, sans-serif;

  --container: 1200px;
  --nav-h: 72px;
}

/* ---- Reset ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   Typography
   ============================================================ */
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.eyebrow.on-dark { color: var(--accent-on-dark); }

h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark p { color: var(--body-on-dark); }

.display-hero {
  font-size: clamp(34px, 5.4vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.display-lg {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.2;
  font-weight: 700;
}
.display-md {
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.3;
}
.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 400;
  color: var(--body-muted);
  line-height: 1.7;
}
.on-dark .lead { color: var(--body-muted-on-dark); }
p { font-size: 16px; line-height: 1.75; color: var(--body-muted); }
.on-dark p.lead, .on-dark p { color: var(--body-muted-on-dark); }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--hairline);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand .brand-kr {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand .brand-en {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
  margin-top: 3px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--accent-deep); }

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Language switcher */
.lang-switch {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline);
  background: var(--canvas);
}
.lang-btn:hover { border-color: var(--accent); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-card);
  min-width: 140px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .18s ease;
}
.lang-switch.open .lang-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.lang-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 9px 12px;
  font-size: 13.5px;
  border-radius: var(--r-xs);
  color: var(--body);
}
.lang-menu button:hover { background: var(--canvas-warm); }
.lang-menu button.active { color: var(--accent-deep); font-weight: 700; }

/* Booking dropdown (header) */
.book-switch { position: relative; }
.book-switch .book-btn svg { transition: transform .2s ease; }
.book-switch.open .book-btn svg { transform: rotate(180deg); }
.book-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-card);
  min-width: 190px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .18s ease;
  z-index: 50;
}
.book-switch.open .book-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.book-menu a {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--r-xs);
  color: var(--body);
}
.book-menu a:hover { background: var(--canvas-warm); color: var(--accent-deep); }

/* Mobile booking group */
.mobile-book-group { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.mobile-book-group .btn-primary { width: 100%; margin-top: 0; }

/* Home CTA band — two actions */
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: var(--r-pill);
  transition: transform .15s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--accent-deep); }
.btn-primary:active { transform: scale(0.96); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  font-size: 14.5px;
  font-weight: 600;
  padding: 10.5px 24px;
  border-radius: var(--r-pill);
  transition: all .2s ease;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent-deep); }
.on-dark .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.5); }
.on-dark .btn-secondary:hover { border-color: var(--accent-on-dark); color: var(--accent-on-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}
.hamburger span {
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--canvas);
  z-index: 400;
  padding: 32px 24px;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  display: block;
  font-size: 22px;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
}
.mobile-drawer .mobile-lang {
  margin-top: 28px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.mobile-drawer .mobile-lang button {
  padding: 9px 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 600;
}
.mobile-drawer .mobile-lang button.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.mobile-drawer .btn-primary { width: 100%; }

/* ============================================================
   Section Tiles (alternating light / sand / dark rhythm)
   ============================================================ */
.tile {
  padding: var(--sp-section) 0;
}
.tile-canvas { background: var(--canvas); }
.tile-sand { background: var(--surface-sand); }
.tile-warm { background: var(--canvas-warm); }
.tile-dark {
  background: var(--surface-dark-1);
}
.tile-dark-2 { background: var(--surface-dark-2); }
.tile-dark-3 { background: var(--surface-dark-3); }

.section-head {
  max-width: 640px;
  margin-bottom: var(--sp-xl);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 10px; display: block; }
.section-head h2 { margin-bottom: 14px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 var(--sp-xxl);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(23,21,18,0.15) 0%, rgba(23,21,18,0.15) 40%, rgba(23,21,18,0.78) 100%);
}

/* Hero slideshow */
.hero-bg.hero-slideshow .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
  z-index: 0;
}
.hero-bg.hero-slideshow .hero-slide.active {
  opacity: 1;
  z-index: 0;
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero-dot.active {
  background: #fff;
  transform: scale(1.3);
}
.hero-dot:hover { background: rgba(255,255,255,0.7); }

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 760px;
}
.hero-content .eyebrow { color: var(--accent-on-dark); margin-bottom: 16px; display: block; }
.hero-content h1 { color: #fff; margin-bottom: 18px; }
.hero-content p { color: rgba(255,255,255,0.82); max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 var(--sp-xl);
  margin-top: 0;
}
.page-hero .hero-content { max-width: 640px; }
.page-hero .display-lg { color: #fff; }

/* ============================================================
   Cards
   ============================================================ */
.stay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.stay-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
}
.stay-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.stay-card:hover img { transform: scale(1.05); }
.stay-card .card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,21,18,0) 40%, rgba(23,21,18,0.85) 100%);
}
.stay-card .card-text {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px;
  color: #fff;
}
.stay-card .card-text .eyebrow { color: var(--accent-on-dark); margin-bottom: 6px; display: block; }
.stay-card .card-text h3 { color: #fff; font-size: 22px; margin-bottom: 6px; }
.stay-card .card-text p { color: rgba(255,255,255,0.78); font-size: 14px; margin: 0; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
}
.on-dark .feature-card {
  background: rgba(255,255,255,0.04);
  border-color: var(--hairline-dark);
}
.feature-card .icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--surface-sand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
}
.feature-card h4 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; margin: 0; }

/* Emergency contact block */
.contact-panel {
  background: var(--surface-sand);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  margin-bottom: var(--sp-xl);
}
.contact-panel .contact-label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-deep);
  margin-bottom: 20px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 14px 16px;
}
.contact-item .icon { font-size: 19px; flex-shrink: 0; width: 24px; text-align: center; }
.contact-item .meta { min-width: 0; }
.contact-item .meta span {
  display: block;
  font-size: 12px;
  color: var(--ink-muted-48);
  margin-bottom: 2px;
}
.contact-item .meta a,
.contact-item .meta strong {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  word-break: break-all;
}
.contact-item .meta a:hover { color: var(--accent-deep); }

/* Usage rule list (rooftop guide, house rules) */
.rule-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--body-muted);
}
.rule-item .icon { flex-shrink: 0; font-size: 17px; line-height: 1.5; }
.rule-item strong { color: var(--ink); }
.rule-item.highlight {
  background: var(--surface-sand);
  border-color: var(--accent);
  color: var(--ink);
  font-weight: 600;
}

/* Photo showcase (rooftop / exterior) */
.photo-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}
.photo-row .tall { grid-row: span 2; }
.photo-tile {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.photo-tile img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   Gallery grid + Lightbox
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(15,13,11,0.92);
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-elev);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: #fff;
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.24); }

/* ============================================================
   Stay tabs
   ============================================================ */
.stay-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: var(--sp-xl);
}
.stay-tabs button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 26px 28px;
  border-radius: var(--r-lg);
  border: 2px solid var(--hairline);
  background: var(--canvas);
  text-align: left;
  transition: border-color .2s ease, background .2s ease, transform .15s ease;
}
.stay-tabs button:hover { border-color: var(--accent-soft); }
.stay-tabs button:active { transform: scale(0.98); }
.stay-tab-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.stay-tab-name {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.stay-tab-desc {
  font-size: 13.5px;
  color: var(--body-muted);
}
.stay-tabs button.active {
  background: var(--canvas-warm);
  border-color: var(--accent);
  box-shadow: var(--shadow-card);
}
.stay-tabs button.active .stay-tab-name { color: var(--accent-deep); }
.stay-panel { display: none; }
.stay-panel.active { display: block; }

.room-block { margin-bottom: var(--sp-xxl); }
.room-block:last-child { margin-bottom: 0; }
.room-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 8px;
}
.room-block-head h3 { font-size: 21px; }
.room-block-head span { font-size: 13px; color: var(--ink-muted-48); }

.amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--sp-lg);
}
.amenity-chip {
  padding: 9px 16px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  font-size: 13.5px;
  color: var(--body);
}

/* ============================================================
   Guide (주변안내) cards / Manual (숙소메뉴얼) accordion
   ============================================================ */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.guide-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
}
.guide-card .eyebrow { margin-bottom: 10px; display: block; }
.guide-card h3 { font-size: 19px; margin-bottom: 10px; }
.guide-card .coming-soon {
  margin-top: 16px;
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-muted-48);
  background: var(--canvas-warm);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}

/* Food / restaurant recommendation cards */
.food-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.food-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.food-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.food-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.food-card:hover .food-card-img img { transform: scale(1.05); }
.food-card-body {
  padding: var(--sp-lg);
}
.food-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.food-card-head h3 { font-size: 18px; }
.food-card .walk-badge {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-deep);
  background: var(--surface-sand);
  padding: 5px 11px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.food-card .dish {
  font-size: 14.5px;
  color: var(--body-muted);
  margin-bottom: 6px;
}
.food-card .hours {
  font-size: 13px;
  color: var(--ink-muted-48);
  margin-bottom: 18px;
}
.food-card .note {
  font-size: 13px;
  color: var(--accent-deep);
  font-weight: 600;
  margin: -6px 0 14px;
}
.pick-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 10px;
}
.food-card .map-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.food-card .map-links a {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline);
  color: var(--ink);
  transition: all .2s ease;
}
.food-card .map-links a:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}

/* Convenience-store ranking cards */
.rank-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.rank-card {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 16px;
}
.rank-card-img {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--hairline);
}
.rank-card-img.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.rank-card-img img { width: 100%; height: 100%; object-fit: contain; }
.rank-card-body { min-width: 0; }
.rank-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  padding: 0 6px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}
.rank-card h3 { font-size: 16.5px; margin-bottom: 6px; }
.rank-card p { font-size: 13.5px; color: var(--body-muted); line-height: 1.6; margin: 0; }

/* Guide card body copy (multi-paragraph info blocks) */
.guide-card div[data-i18n-html] p,
.guide-card > p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: var(--body-muted);
}
.guide-card div[data-i18n-html] p:last-child { margin-bottom: 0; }

/* Full, uncropped reference images (route map, parking photo) */
.info-photo {
  aspect-ratio: auto !important;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--canvas-warm);
  cursor: zoom-in;
}
.info-photo img {
  width: 100%;
  height: auto;
  object-fit: contain !important;
  display: block;
}
.info-photo:hover img { transform: none; }

/* 1-Day course blocks */
.course-block { margin-bottom: var(--sp-xxl); }
.course-block:last-of-type { margin-bottom: var(--sp-xl); }
.course-block-head { margin-bottom: 20px; }
.course-block-head .eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
}
.course-block-head h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--ink);
}
.course-block-head p {
  font-size: 14.5px;
  color: var(--body-muted);
  max-width: 720px;
  margin-bottom: 12px;
}
.course-block-head .hours {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-deep);
  background: var(--canvas-warm);
  border: 1px solid var(--hairline);
  padding: 6px 14px;
  border-radius: var(--r-pill);
}

/* Area map pair (01/02 shown as one connected block) */
.map-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.map-pair .info-photo { border-radius: 0; cursor: zoom-in; }
.map-pair .info-photo:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); }
.map-pair .info-photo:last-child { border-radius: 0 var(--r-lg) var(--r-lg) 0; }

/* Arrival walkthrough videos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.video-card video {
  width: 100%;
  border-radius: var(--r-lg);
  display: block;
  background: #000;
  box-shadow: var(--shadow-card);
}
.video-card p {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--body-muted);
  text-align: center;
}

.map-embed {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  height: 380px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.address-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  padding: 24px;
  background: var(--canvas-warm);
  border-radius: var(--r-lg);
  margin-bottom: var(--sp-lg);
}
.address-block .addr-kr { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.address-block .addr-en { font-size: 14px; color: var(--body-muted); }

.accordion { border-top: 1px solid var(--hairline); }
.accordion-item { border-bottom: 1px solid var(--hairline); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.accordion-trigger .plus {
  width: 22px; height: 22px;
  flex-shrink: 0;
  position: relative;
}
.accordion-trigger .plus::before,
.accordion-trigger .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform .25s ease;
}
.accordion-trigger .plus::before { left: 0; top: 50%; width: 100%; height: 2px; transform: translateY(-50%); }
.accordion-trigger .plus::after { top: 0; left: 50%; width: 2px; height: 100%; transform: translateX(-50%); }
.accordion-item.open .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.accordion-item.open .accordion-body { max-height: 600px; }
.accordion-body-inner { padding: 0 4px 24px; }
.accordion-body-inner p { margin-bottom: 10px; }
.accordion-body-inner p:last-child { margin-bottom: 0; }

/* Sub-page back link (e.g. breakfast.html -> guide.html) */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--body-muted);
  margin-bottom: 24px;
  transition: color .2s ease;
}
.back-link:hover { color: var(--accent-deep); }

/* ============================================================
   Greeting (인사말)
   ============================================================ */
.greeting-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.greeting-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
}
.greeting-photo img { width: 100%; height: 100%; object-fit: cover; }
.greeting-text .signature {
  margin-top: 28px;
  font-size: 15px;
  color: var(--ink-muted-48);
  font-style: italic;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--surface-dark-3);
  color: var(--body-muted-on-dark);
  padding: var(--sp-xxl) 0 var(--sp-lg);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
  gap: 32px;
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid var(--hairline-dark);
  margin-bottom: var(--sp-lg);
}
.footer-col.footer-contact a,
.footer-col.footer-contact p { word-break: break-all; }
.footer-brand .brand-kr { color: #fff; font-size: 22px; font-weight: 700; }
.footer-brand .brand-en { color: var(--accent-on-dark); font-size: 11px; letter-spacing: 0.16em; margin: 6px 0 16px; text-transform: uppercase; }
.footer-brand p { font-size: 13.5px; max-width: 320px; }
.footer-col h5 {
  color: #fff; font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: var(--body-muted-on-dark);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--accent-on-dark); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: var(--ink-muted-48);
}

/* ============================================================
   Utility
   ============================================================ */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   Responsive — breakpoints: 1068 / 833 / 734 / 640 / 480
   ============================================================ */
@media (max-width: 1068px) {
  :root { --sp-section: 72px; }
  .stay-grid, .feature-grid, .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px 32px; }
}

@media (max-width: 920px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-right { gap: 8px; }
  .header-right .lang-btn {
    padding: 7px 10px;
    font-size: 12px;
    gap: 3px;
  }
  .header-right .lang-menu { min-width: 124px; }
  .header-right .book-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}

@media (max-width: 833px) {
  .greeting-wrap { grid-template-columns: 1fr; gap: 32px; }
  .greeting-photo { aspect-ratio: 16/10; }
  .photo-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 734px) {
  :root { --sp-section: 56px; --nav-h: 64px; }
  .feature-grid, .guide-grid, .food-grid, .video-grid, .contact-grid, .rank-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .map-pair { grid-template-columns: 1fr; gap: 12px; }
  .map-pair .info-photo:first-child,
  .map-pair .info-photo:last-child { border-radius: var(--r-lg); }
  .hero { min-height: 80vh; }
}

@media (max-width: 640px) {
  .stay-grid { grid-template-columns: 1fr; }
  .photo-row { grid-template-columns: 1fr; }
  .photo-row .tall { grid-row: span 1; }
  .container { padding: 0 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stay-tabs { gap: 10px; }
  .stay-tabs button { padding: 16px 16px; }
  .stay-tab-name { font-size: 21px; }
  .stay-tab-desc { font-size: 12px; }
  .address-block { flex-direction: column; }
  .header-right { gap: 6px; }
  .header-right .lang-btn { padding: 6px 8px; font-size: 11px; }
  .header-right .book-btn { padding: 7px 10px; font-size: 12px; }
  .brand .brand-kr { font-size: 16px; }
  .brand .brand-en { display: none; }
}
