@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700;900&display=swap');

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Noto Sans KR', -apple-system, sans-serif;
  background: #faf9f5;
  color: #2b2b2b;
  line-height: 1.6;
}
a { color: inherit; }

/* Header / nav */
header.site {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 40px; background: #fff; border-bottom: 1px solid #eee2;
  flex-wrap: wrap; gap: 12px;
}
header.site .logo { font-weight: 700; font-size: 19px; letter-spacing: 0.5px; }
header.site .logo span { display: block; font-weight: 400; font-size: 12px; color: #777; margin-top: 2px; }
header.site nav { display: flex; gap: 26px; font-size: 14px; }
header.site nav a { text-decoration: none; color: #333; }
header.site nav a.active { color: #1F4E51; font-weight: 700; }
header.site .phone {
  background: #1F4E51; color: #fff; text-decoration: none; font-size: 14px; font-weight: 700;
  padding: 10px 18px; border-radius: 24px;
}
header.site .phone:hover { background: #163a3d; }

/* Kicker / section labels */
.kicker { color: #b08a4e; font-size: 12.5px; font-weight: 700; letter-spacing: 1px; }

/* Hero */
.hero {
  position: relative; min-height: 420px; display: flex; align-items: center;
  background-size: cover; background-position: center; color: #fff; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(31,78,81,0.94) 0%, rgba(31,78,81,0.75) 45%, rgba(31,78,81,0.25) 100%);
}
.hero .hero-inner { position: relative; z-index: 1; padding: 60px; max-width: 620px; }
.hero .kicker { color: #cfa96a; }
.hero h1 { font-size: 34px; margin: 12px 0 18px; font-weight: 900; }
.hero p { font-size: 14.5px; color: #dce6e5; line-height: 1.8; }
.hero .btns { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero .btn {
  text-decoration: none; padding: 13px 24px; border-radius: 4px; font-size: 14px; font-weight: 700;
}
.hero .btn.primary { background: #cfa96a; color: #1F4E51; }
.hero .btn.secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.6); }

/* Info strip (location/dining/stay) */
.info-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  border-top: 1px solid #eee; border-bottom: 1px solid #eee;
}
.info-strip > div { padding: 28px 40px; border-left: 1px solid #eee; }
.info-strip > div:first-child { border-left: none; }
.info-strip h3 { font-size: 19px; margin: 8px 0 10px; }
.info-strip p { font-size: 13.5px; color: #5C6B72; margin: 2px 0; }

/* Sections */
.section { padding: 56px 40px; max-width: 1100px; margin: 0 auto; }
.section h2 { font-size: 26px; margin: 8px 0 14px; }
.section > p.lead { font-size: 14px; color: #5C6B72; max-width: 640px; margin-bottom: 30px; }
.section-head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.section-head a.more { font-size: 13px; color: #1F4E51; text-decoration: none; font-weight: 700; }

/* Room cards */
.room-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; }
.room-card { border: 1px solid #E6E1D8; border-radius: 6px; overflow: hidden; background: #fff; }
.room-card .thumb { height: 200px; }
.room-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.room-card .body { padding: 20px; }
.room-card .tag { font-size: 11.5px; color: #b08a4e; font-weight: 700; letter-spacing: 0.5px; }
.room-card h3 { font-size: 18px; margin: 8px 0 12px; }
.room-card .spec { font-size: 12.5px; color: #5C6B72; }
.room-card .spec-table { margin-top: 12px; font-size: 13px; }
.room-card .spec-table div { display: flex; justify-content: space-between; padding: 4px 0; border-top: 1px solid #f0ede6; }
.room-card .spec-table div:first-child { border-top: none; }
.room-card .spec-table .k { color: #888; }
.room-card .link { display: block; margin-top: 16px; font-size: 13px; font-weight: 700; color: #1F4E51; text-decoration: none; }

/* Rate plan card (home teaser) */
.rate-teaser { border: 1px solid #E6E1D8; border-radius: 6px; padding: 34px; display: flex; flex-direction: column; gap: 18px; }
.rate-teaser .cols { display: flex; gap: 16px; flex-wrap: wrap; }
.rate-teaser .cols > div { flex: 1; min-width: 220px; border: 1px solid #E6E1D8; padding: 24px; }
.rate-teaser .cols h4 { font-size: 16px; margin-bottom: 8px; }
.rate-teaser .cols p { font-size: 13px; color: #5C6B72; }

/* Tabs */
.tabs { display: flex; gap: 10px; margin-bottom: 26px; }
.tab-btn {
  padding: 12px 20px; border-radius: 4px; border: 1px solid #E6E1D8; background: #fff;
  font-size: 13.5px; font-weight: 700; cursor: pointer; color: #333;
}
.tab-btn.active { background: #1F4E51; color: #fff; border-color: #1F4E51; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Rate table */
table.rate { width: 100%; border-collapse: collapse; font-size: 13.5px; }
table.rate th { text-align: left; padding: 12px 10px; border-bottom: 2px solid #1F4E51; color: #1F4E51; }
table.rate td { padding: 12px 10px; border-bottom: 1px solid #eee; }
.rate-note { font-size: 12.5px; color: #5C6B72; margin-top: 16px; }
.rate-note p { margin: 3px 0; }

/* Calendar */
.legend { display: flex; gap: 18px; flex-wrap: wrap; font-size: 12.5px; margin: 18px 0 24px; color: #555; }
.legend span { display: inline-flex; align-items: center; gap: 6px; }
.legend i { width: 13px; height: 13px; border-radius: 3px; display: inline-block; }
.cal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 18px; }
.cal-month { background: #fff; border: 1px solid #eee; border-radius: 6px; padding: 16px; }
.cal-month h4 { font-size: 14px; margin-bottom: 10px; }
.cal-month table { width: 100%; border-collapse: collapse; font-size: 12px; text-align: center; }
.cal-month th { color: #999; font-weight: 400; padding: 3px 0; }
.cal-month td { padding: 5px 0; border-radius: 4px; }
.cal-month td.peak { background: #1F4E51; color: #fff; font-weight: 700; }
.cal-month td.shoulder { background: #cfa96a; color: #fff; font-weight: 700; }
.cal-month td.blackout { background: #c96a6a; color: #fff; font-weight: 700; }
.cal-month td.sat { background: #dfe7e6; }

/* Booking / contact cards */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; }
.contact-card { border: 1px solid #E6E1D8; border-radius: 6px; padding: 26px; background: #fff; }
.contact-card .tag { font-size: 12px; color: #b08a4e; font-weight: 700; }
.contact-card h3 { font-size: 18px; margin: 8px 0 14px; }
.contact-card p { font-size: 13.5px; margin: 3px 0; color: #444; }
.contact-card a.cta { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 700; color: #1F4E51; text-decoration: none; }

.policy-list { font-size: 13.5px; color: #444; margin-top: 10px; }
.policy-list li { margin-bottom: 8px; }

/* Footer */
footer.site {
  background: #1F4E51; color: #DCE6E5; padding: 48px 40px 30px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
footer.site .brand { font-family: inherit; }
footer.site .brand b { color: #fff; font-size: 17px; }
footer.site .brand small { display: block; margin-top: 2px; font-size: 11px; }
footer.site p { font-size: 13px; margin: 3px 0; line-height: 1.8; }
footer.site .meta { font-size: 12px; color: #8FA6A4; }

/* Floating home button */
.float-home {
  position: fixed; right: 24px; bottom: 24px; z-index: 999;
  display: flex; align-items: center; gap: 12px;
  background: #e0302f; color: #fff; text-decoration: none;
  padding: 20px 28px; border-radius: 50px;
  box-shadow: 0 8px 24px rgba(224,48,47,0.45);
  font-size: 22px; font-weight: 800;
}
.float-home:hover { background: #c8201f; }
.float-home svg { width: 32px; height: 32px; flex-shrink: 0; }

@media (max-width: 720px) {
  header.site { padding: 14px 18px; }
  header.site nav { display: none; }
  .hero .hero-inner { padding: 40px 24px; }
  .hero h1 { font-size: 26px; }
  .info-strip > div { border-left: none; border-top: 1px solid #eee; padding: 22px; }
  .info-strip > div:first-child { border-top: none; }
  .section { padding: 40px 20px; }
  footer.site { padding: 36px 20px 24px; }
  .float-home span { display: none; }
  .float-home { padding: 18px; border-radius: 50%; }
}
