:root {
  --ink:#203731;
  --sub:#60716a;
  --paper:#f5f4ee;
  --line:#dce1d7;
  --green:#205c48;
  --accent:#d8edb0
}

* {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:85px
}

body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:system-ui,-apple-system,'Segoe UI','Noto Sans KR',sans-serif;
  font-size:15px;
  line-height:1.65;
  word-break:keep-all;
  overflow-wrap:break-word
}

a {
  color:var(--green);
  text-underline-offset:4px
}

button,input,select {
  font:inherit
}

button,summary,a,select {
  -webkit-tap-highlight-color:transparent
}

a:focus-visible,button:focus-visible,summary:focus-visible,input:focus-visible,select:focus-visible,[tabindex]:focus-visible {
  outline:3px solid #c4832c;
  outline-offset:4px
}

h1,h2,h3,p {
  margin:0
}

header {
  background:#172e29;
  color:#fff;
  padding:54px 0 42px
}

.wrap {
  width:min(1120px,calc(100% - 48px));
  margin:auto
}

.eyebrow {
  font-size:12px;
  letter-spacing:.16em;
  font-weight:700;
  color:#b7c9bd;
  text-transform:uppercase
}

h1 {
  font-size:clamp(34px,5vw,58px);
  line-height:1.17;
  letter-spacing:-.055em;
  margin:18px 0
}

header p {
  color:#c2d1c7;
  max-width:680px
}

.hero-bottom {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:26px
}

.pill {
  padding:7px 13px;
  border:1px solid #597066;
  border-radius:30px;
  font-size:13px
}

.pill.strong {
  background:var(--accent);
  color:#203b29;
  border-color:var(--accent)
}

nav {
  position:sticky;
  top:0;
  background:#f5f4eef5;
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
  z-index:5
}

nav .wrap {
  display:flex;
  gap:24px;
  overflow-x:auto;
  white-space:nowrap;
  padding:15px 0
}

nav a {
  font-size:14px;
  font-weight:650;
  text-decoration:none;
  color:var(--sub)
}

nav a:first-child {
  color:var(--green)
}

main {
  padding:36px 0 70px
}

.intro {
  display:grid;
  grid-template-columns:1.8fr 1fr;
  gap:28px;
  padding:25px 28px;
  background:#e9eddf;
  border-radius:18px;
  margin-bottom:40px
}

.intro strong {
  font-size:19px
}

.intro p {
  margin-top:8px;
  color:#4b5f51
}

.intro .fine {
  font-size:13px;
  border-left:1px solid #cbd4bf;
  padding-left:25px
}

.content-section {
  margin-top:16px;
  scroll-margin-top:82px
}

.section-summary {
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:8px 24px;
  padding:22px 24px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  list-style:none
}

.section-summary::-webkit-details-marker {
  display:none
}

.section-summary::after {
  content:"＋";
  grid-column:2;
  grid-row:1 / span 2;
  color:var(--green);
  font-size:22px;
  font-weight:500
}

.content-section[open]>.section-summary::after {
  content:"−"
}

.section-summary span {
  font-size:22px;
  font-weight:750;
  letter-spacing:-.04em
}

.section-summary small {
  color:var(--sub);
  font-size:13px;
  font-weight:500
}

.section-content {
  padding:24px 0 14px
}

.section-tools {
  display:flex;
  justify-content:flex-end;
  margin-bottom:12px
}

.section-head {
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:16px;
  margin-bottom:20px
}

.section-head h2 {
  font-size:26px;
  letter-spacing:-.04em
}

.section-head p {
  color:var(--sub);
  margin-top:5px
}

.kicker {
  font-size:12px;
  color:var(--green);
  font-weight:800;
  letter-spacing:.08em;
  margin-bottom:5px
}

.toolbar {
  display:flex;
  align-items:center;
  gap:12px;
  margin:18px 0
}

.toolbar label {
  color:var(--sub);
  font-size:13px
}

select {
  border:1px solid #c5cfc3;
  border-radius:9px;
  background:white;
  color:var(--ink);
  padding:9px 12px;
  max-width:100%
}

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

.card {
  border:1px solid var(--line);
  border-radius:17px;
  background:#fff;
  padding:23px;
  display:flex;
  flex-direction:column;
  min-width:0
}

.card[data-order="0"] {
  border-top:4px solid var(--green);
  padding-top:20px
}

.card-top {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:6px;
  font-size:11px;
  margin-bottom:19px
}

.badge {
  display:inline-block;
  padding:4px 8px;
  border-radius:5px;
  font-size:11px;
  font-weight:700
}

.green {
  background:#e1eddf;
  color:#285c38
}

.blue {
  background:#e9eff2;
  color:#3b5f74
}

.amber {
  background:#fff0d9;
  color:#80520f
}

.muted {
  color:var(--sub)
}

h3 {
  font-size:21px;
  letter-spacing:-.045em
}

.room {
  color:var(--sub);
  font-size:14px;
  margin:3px 0 20px
}

.price {
  font-size:31px;
  font-weight:760;
  letter-spacing:-.045em;
  font-variant-numeric:tabular-nums;
  line-height:1.2
}

.price small {
  font-size:16px;
  font-weight:500;
  margin-left:4px
}

.meta {
  font-size:12px;
  color:var(--sub);
  margin:7px 0 20px
}

.verdict {
  font-size:13px;
  border-top:1px solid var(--line);
  padding-top:15px;
  flex:1
}

.verdict p+p {
  margin-top:9px
}

.verdict b {
  display:block;
  font-size:11px;
  color:var(--sub);
  margin-bottom:3px
}

.cost {
  font-size:12px;
  margin-top:16px;
  border:0;
  border-top:1px dashed var(--line);
  border-radius:0;
  padding-top:10px
}

.cost summary {
  padding:0;
  color:var(--green);
  font-weight:600
}

.cost p {
  padding:8px 0 0;
  color:var(--sub)
}

summary {
  cursor:pointer;
  padding:18px 20px;
  font-weight:650
}

details>summary::marker {
  color:var(--green)
}

.booking {
  display:flex;
  justify-content:space-between;
  margin-top:17px;
  padding:10px 13px;
  background:#f0f4ec;
  border-radius:8px;
  text-decoration:none;
  font-size:13px;
  font-weight:700
}

.booking:hover {
  background:#deead6
}

.note {
  font-size:13px;
  color:var(--sub);
  margin-top:15px
}

.table-box {
  max-width:100%;
  overflow-x:auto;
  overscroll-behavior-x:contain;
  border:1px solid var(--line);
  border-radius:12px;
  background:white;
  -webkit-overflow-scrolling:touch
}

table {
  width:100%;
  min-width:850px;
  border-collapse:collapse;
  font-size:13px;
  text-align:left
}

th {
  background:#eaf0e7;
  font-size:12px;
  color:#526650;
  font-weight:700
}

th,td {
  padding:15px 18px;
  border-bottom:1px solid var(--line);
  vertical-align:top
}

tr:last-child td {
  border-bottom:0
}

td:first-child {
  font-weight:600;
  min-width:180px
}

td a {
  text-decoration:none
}

td a:hover {
  text-decoration:underline
}

td.money {
  white-space:nowrap;
  font-weight:750;
  font-variant-numeric:tabular-nums
}

td:nth-child(3) {
  min-width:120px
}

.scroll-hint {
  font-size:12px;
  color:var(--sub);
  margin:0 0 9px
}

.subsection {
  margin-top:28px
}

.subsection h3 {
  font-size:18px;
  margin-bottom:12px
}

.content-section .section-content>details {
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  margin-top:12px
}

.detail-body {
  padding:0 20px 20px
}

.detail-body>p {
  color:var(--sub);
  font-size:13px;
  margin-bottom:14px
}

.status {
  font-size:11px;
  display:inline-block;
  border-radius:4px;
  background:#f0eee8;
  padding:3px 7px;
  white-space:nowrap
}

.search {
  width:100%;
  max-width:380px;
  border:1px solid #c6d0c3;
  background:#fff;
  padding:11px 13px;
  border-radius:9px;
  margin-bottom:14px
}

.empty {
  padding:20px;
  color:var(--sub)
}

.foot {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px
}

.small-panel {
  padding:22px;
  background:#eceee7;
  border-radius:12px
}

.small-panel h2 {
  font-size:17px;
  margin-bottom:8px
}

.small-panel p {
  font-size:13px;
  color:var(--sub)
}

.comparison {
  margin-top:25px
}

button {
  cursor:pointer
}

button.print {
  background:transparent;
  border:1px solid #ccd3c6;
  border-radius:8px;
  padding:7px 12px;
  color:var(--sub);
  font-size:12px
}

.key-note {
  border-left:3px solid #b4c899;
  padding:4px 0 4px 14px;
  margin-top:20px;
  color:var(--sub);
  font-size:13px
}

[hidden] {
  display:none!important
}

@media(max-width:950px) {
  .grid {
    grid-template-columns:repeat(2,minmax(0,1fr))
  }
}

@media(max-width:600px) {
  .wrap {
    width:calc(100% - 32px)
  }
  header {
    padding:34px 0 30px
  }
  header p {
    font-size:14px
  }
  h1 {
    font-size:38px
  }
  nav .wrap {
    gap:21px
  }
  main {
    padding-top:22px
  }
  .intro {
    grid-template-columns:1fr;
    gap:16px;
    padding:20px;
    margin-bottom:30px
  }
  .intro .fine {
    border-left:0;
    border-top:1px solid #cbd4bf;
    padding:14px 0 0
  }
  .section-summary {
    padding:18px 17px;
    gap:5px 12px
  }
  .section-summary span {
    font-size:20px
  }
  .section-summary small {
    font-size:12px
  }
  .section-content {
    padding-top:18px
  }
  .grid {
    grid-template-columns:1fr;
    gap:14px
  }
  .card {
    padding:22px
  }
  .card-top {
    font-size:12px
  }
  .badge {
    font-size:12px
  }
  .price {
    font-size:34px
  }
  .verdict {
    font-size:14px
  }
  .section-head h2 {
    font-size:25px
  }
  .section-head {
    display:block
  }
  .print {
    margin-top:12px
  }
  .foot {
    grid-template-columns:1fr
  }
  .detail-body {
    padding:0 12px 16px
  }
  summary {
    padding:17px 14px
  }
  th,td {
    padding:13px 15px
  }
  .toolbar {
    justify-content:space-between
  }
  .booking {
    padding:12px 14px
  }
  .cost {
    font-size:13px
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }
}

@media print {
  nav,.toolbar,.booking,.print,.search {
    display:none
  }
  header {
    background:white;
    color:#203731;
    padding:15px 0
  }
  header p,.eyebrow {
    color:#60716a
  }
  .wrap {
    width:100%
  }
  .grid {
    grid-template-columns:repeat(2,1fr)
  }
  .card {
    break-inside:avoid
  }
  .table-box {
    overflow:visible
  }
  table {
    min-width:0;
    font-size:10px
  }
  .intro {
    margin-bottom:20px
  }
  body {
    background:white
  }
  .content-section {
    break-before:auto
  }
}
