/* 소담스테이 — flat angular tokens. radius 0. */
:root{
  --np-green:#09aa5c;
  --np-green-hover:#0b9552;
  --np-brand:#00de5a;
  --np-tint:#eef9f3;
  --np-tint2:#e3f6ed;
  --np-canvas:#ffffff;
  --np-surface:#f6f8fa;
  --np-surface-alt:#f3f5f7;
  --np-line:#dcdee0;
  --np-line-alt:#c8cacc;
  --np-ink:#1e1e23;
  --np-body:#404048;
  --np-muted:#767678;
  --np-muted-light:#aaaaac;
  --np-link:#007eff;
  --np-error:#e53935;
  --r-sm:0;
  --r-md:0;
  --r-guide:0;
  --r-card:0;
  --r-xl:0;
  --r-pill:0;
  --font-ui:"Pretendard",system-ui,-apple-system,sans-serif;
  --font-display:"NanumSquareNeo","Pretendard",system-ui,sans-serif;
  --sp-xs:4px;
  --sp-sm:8px;
  --sp-md:12px;
  --sp-base:16px;
  --sp-lg:20px;
  --sp-xl:28px;
  --sp-xxl:40px;
  --sp-sec:60px;
  --motion-fast:100ms;
  --motion-std:200ms;
  --ease-enter:cubic-bezier(.2,.6,.25,1);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;box-shadow:none}
html{scroll-behavior:smooth}
html,body{min-height:100%}
body{
  font-family:var(--font-ui);
  color:var(--np-body);
  background:var(--np-canvas);
  font-size:14px;
  font-weight:400;
  line-height:1.5;
  letter-spacing:-.01em;
}
img{max-width:100%;display:block;border:0}
a{color:var(--np-link);text-decoration:none}
a:hover{text-decoration:underline}
button,input,select,textarea{font:inherit;color:inherit}
table{border-collapse:collapse;width:100%}
ul,ol{list-style:none}

.wrap{width:min(1120px,calc(100% - 40px));margin:0 auto}

/* ===== UTIL + GNB ===== */
.utilbar{
  background:var(--np-surface-alt);
  color:var(--np-muted);
  font-size:13px;
  line-height:1.46;
  border-bottom:1px solid var(--np-line);
}
.utilbar .wrap{
  min-height:32px;
  display:flex;justify-content:space-between;align-items:center;
  gap:12px;
  padding:6px 0;
}
.utilbar span + span::before{content:"·";margin:0 8px;color:var(--np-muted-light)}
.utilbar a{color:var(--np-muted)}
.utilbar a:hover{color:var(--np-ink);text-decoration:none}

.gnb{
  background:var(--np-canvas);
  height:60px;
  position:sticky;top:0;z-index:50;
  border-bottom:1px solid var(--np-line);
}
.gnb .wrap{
  height:60px;
  display:flex;align-items:center;justify-content:space-between;
  gap:20px;
}
.logo{
  display:flex;align-items:center;gap:8px;
  flex-shrink:0;text-decoration:none;color:var(--np-ink);
}
.logo:hover{text-decoration:none}
.logo img{height:28px;width:auto;display:block}
.logo img.is-missing{display:none}
.logo-word{
  display:none;
  align-items:center;gap:8px;
  font-family:var(--font-display);
  font-weight:700;font-size:18px;letter-spacing:-.02em;
  color:var(--np-ink);
}
.logo img.is-missing + .logo-word{display:inline-flex}
.logo-mark{
  width:8px;height:8px;
  background:var(--np-brand);
  flex-shrink:0;
}

.gnb-nav{display:flex;align-items:center;gap:4px;flex:1;justify-content:flex-end}
.gnb-nav a{
  color:var(--np-muted);
  font-size:16px;font-weight:400;line-height:1.5;
  padding:8px 12px;
  border-radius:var(--r-md);
  text-decoration:none;
  white-space:nowrap;
}
.gnb-nav a:hover{color:var(--np-ink);background:var(--np-surface);text-decoration:none}
.gnb-nav a.is-on{color:var(--np-green);font-weight:600}

.gnb-util{display:flex;align-items:center;gap:8px;flex-shrink:0}
.btn-menu{
  display:none;width:44px;height:44px;
  background:var(--np-canvas);border:1px solid var(--np-line);
  border-radius:var(--r-md);position:relative;cursor:pointer;
}
.btn-menu span,.btn-menu::before,.btn-menu::after{
  content:"";position:absolute;left:12px;right:12px;height:1.5px;background:var(--np-ink);
}
.btn-menu span{top:21px}
.btn-menu::before{top:14px}
.btn-menu::after{bottom:14px}

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  height:44px;padding:10px 16px;
  background:var(--np-green);color:#fff;
  border:0;border-radius:var(--r-md);
  font-family:var(--font-ui);font-size:16px;font-weight:700;line-height:1.5;
  cursor:pointer;text-decoration:none;white-space:nowrap;
  transition:background var(--motion-fast);
}
.btn:hover{background:var(--np-green-hover);text-decoration:none;color:#fff}
.btn-hero{
  display:inline-flex;align-items:center;justify-content:center;
  height:62px;padding:18px 24px;
  background:var(--np-ink);color:#fff;
  border:0;border-radius:var(--r-md);
  font-family:var(--font-display);font-size:20px;font-weight:700;line-height:1;
  cursor:pointer;text-decoration:none;white-space:nowrap;
}
.btn-hero:hover{background:#2a2a30;text-decoration:none;color:#fff}
.btn-pay{
  display:inline-flex;align-items:center;justify-content:center;
  height:44px;padding:10px 20px;
  background:var(--np-green);color:#fff;
  border:0;border-radius:var(--r-md);
  font-family:var(--font-ui);font-size:16px;font-weight:700;
  cursor:pointer;text-decoration:none;white-space:nowrap;
  transition:background var(--motion-fast);
}
.btn-pay:hover{background:var(--np-green-hover);text-decoration:none;color:#fff}
.btn-sub{
  display:inline-flex;align-items:center;justify-content:center;
  height:44px;padding:10px 13px;
  background:var(--np-canvas);color:var(--np-ink);
  border:1px solid var(--np-line);border-radius:var(--r-sm);
  font-family:var(--font-ui);font-size:16px;font-weight:500;
  cursor:pointer;text-decoration:none;white-space:nowrap;
}
.btn-sub:hover{background:var(--np-surface);text-decoration:none;color:var(--np-ink)}
.btn-row{display:flex;flex-wrap:wrap;gap:8px;align-items:center}

/* ===== HERO ===== */
.hero{
  background:var(--np-canvas);
  padding:60px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:40px;
  align-items:center;
}
.hero h1{
  font-family:var(--font-display);
  font-size:42px;font-weight:700;line-height:1.33;
  color:var(--np-ink);
  letter-spacing:-.03em;
  margin-bottom:16px;
}
.hero .lead{
  font-size:16px;font-weight:400;line-height:1.6;
  color:var(--np-body);
  max-width:520px;
}
.hero-actions{margin-top:28px;display:flex;flex-wrap:wrap;gap:8px}
.hero-photo{
  border-radius:var(--r-xl);
  overflow:hidden;
  background:var(--np-surface);
  aspect-ratio:4/3;
}
.hero-photo img{width:100%;height:100%;object-fit:cover}

/* ===== PAGE HEAD ===== */
.page-head{
  background:var(--np-surface);
  padding:48px 0 40px;
  border-bottom:1px solid var(--np-line);
}
.crumb{font-size:13px;color:var(--np-muted);margin-bottom:12px}
.crumb a{color:var(--np-muted)}
.crumb span{color:var(--np-ink)}
.page-head h1{
  font-family:var(--font-ui);
  font-size:40px;font-weight:700;line-height:1.25;
  color:var(--np-ink);
  letter-spacing:-.03em;
}
.page-head p{
  margin-top:12px;font-size:16px;color:var(--np-body);max-width:640px;
}

.lnb{
  background:var(--np-canvas);
  border-bottom:1px solid var(--np-line);
}
.lnb .wrap{display:flex;flex-wrap:wrap;gap:4px;padding:10px 0}
.lnb a{
  color:var(--np-muted);
  font-size:14px;padding:8px 12px;border-radius:var(--r-md);
  text-decoration:none;
}
.lnb a:hover{color:var(--np-ink);background:var(--np-surface);text-decoration:none}
.lnb a.is-on{color:var(--np-green);font-weight:600;background:var(--np-tint)}

/* ===== SECTIONS ===== */
.sec{padding:var(--sp-sec) 0;background:var(--np-canvas)}
.sec-surface{background:var(--np-surface)}
.sec-head{margin-bottom:28px}
.sec-head h2{
  font-family:var(--font-ui);
  font-size:40px;font-weight:700;line-height:1.25;
  color:var(--np-ink);
  letter-spacing:-.03em;
}
.sec-head p{margin-top:10px;font-size:16px;color:var(--np-body);max-width:640px}
.sec-head h3{
  font-size:28px;font-weight:600;line-height:1.5;color:var(--np-ink);
}

/* ===== WIDGETS (home) ===== */
.home-widgets{padding:40px 0;background:var(--np-canvas)}
.home-widgets-grid{
  display:grid;
  grid-template-columns:1.4fr .9fr .9fr;
  gap:16px;
}
.box{
  background:var(--np-surface);
  border-radius:var(--r-card);
  padding:28px 24px;
}
.box h3{
  font-size:16px;font-weight:700;color:var(--np-ink);
  display:flex;justify-content:space-between;align-items:center;
  margin-bottom:16px;
}
.box h3 a{font-size:13px;font-weight:400;color:var(--np-link)}
.board li + li{border-top:1px solid var(--np-line);margin-top:10px;padding-top:10px}
.board a{
  display:flex;gap:12px;align-items:baseline;
  color:var(--np-ink);text-decoration:none;font-size:14px;
}
.board a:hover{color:var(--np-green)}
.board span{flex-shrink:0;color:var(--np-muted);font-size:13px;width:78px}
.tel{
  font-family:var(--font-display);
  font-size:28px;font-weight:700;line-height:1.3;
  color:var(--np-ink);margin-bottom:8px;
}
.tel a{color:var(--np-ink);text-decoration:none}
.box .meta{font-size:14px;color:var(--np-body);line-height:1.6}

/* ===== CARDS ===== */
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.grid-3{display:grid;grid-template-columns:1fr 1fr 1fr;gap:16px}
.grid-4{display:grid;grid-template-columns:1fr 1fr 1fr 1fr;gap:16px}

.card{
  background:var(--np-surface);
  border-radius:var(--r-card);
  overflow:hidden;
}
.card.on-surface{background:var(--np-canvas)}
.card img{width:100%;height:200px;object-fit:cover}
.card .body{padding:24px}
.card h3{
  font-size:28px;font-weight:600;line-height:1.5;
  color:var(--np-ink);margin-bottom:12px;
}
.card .more{
  display:inline-block;margin-top:14px;
  font-size:14px;font-weight:600;color:var(--np-link);
}
.card-xl{
  background:var(--np-surface);
  border-radius:var(--r-xl);
  overflow:hidden;
}

.guide-card{
  background:var(--np-tint);
  color:var(--np-body);
  border-radius:var(--r-guide);
  padding:40px 26px;
}
.guide-card h3{
  font-size:18px;font-weight:700;color:var(--np-ink);margin-bottom:10px;
}
.guide-card p{font-size:14px;line-height:1.6}

.badge{
  display:inline-flex;align-items:center;
  background:var(--np-tint);color:var(--np-green);
  border-radius:var(--r-pill);
  font-size:12px;font-weight:400;line-height:1;
  padding:6px 10px;
}
.badge-ink{
  background:var(--np-ink);color:#fff;
}

/* ===== TABLES ===== */
table.spec,table.mini,table.rate{
  font-size:14px;
}
table.spec th,table.mini th,table.rate th{
  text-align:left;font-weight:600;color:var(--np-ink);
  width:28%;padding:12px 0;border-bottom:1px solid var(--np-line);
  vertical-align:top;
}
table.spec td,table.mini td,table.rate td{
  padding:12px 0;border-bottom:1px solid var(--np-line);
  color:var(--np-body);
}
table.spec thead th,table.rate thead th{
  font-size:13px;font-weight:600;color:var(--np-muted);
  border-bottom:1px solid var(--np-line-alt);
}
table.rate th{width:auto}

/* ===== PROSE / LISTS ===== */
.prose p{margin-bottom:12px;font-size:16px;line-height:1.7;color:var(--np-body)}
.prose p:last-child{margin-bottom:0}
.split{display:grid;grid-template-columns:1.2fr .8fr;gap:28px;align-items:start}
.split-eq{display:grid;grid-template-columns:1fr 1fr;gap:28px;align-items:start}
.room-photo{
  width:100%;border-radius:var(--r-xl);overflow:hidden;
  background:var(--np-surface);aspect-ratio:4/3;
}
.room-photo img{width:100%;height:100%;object-fit:cover}

.info-box{
  background:var(--np-surface);
  border-radius:var(--r-card);
  padding:28px 24px;
}
.info-box h4{font-size:16px;font-weight:700;color:var(--np-ink);margin-bottom:14px}
.info-box li{
  display:flex;gap:12px;padding:10px 0;
  border-bottom:1px solid var(--np-line);
  font-size:14px;color:var(--np-body);
}
.info-box li:last-child{border-bottom:0}
.info-box li span{flex:0 0 72px;color:var(--np-muted);font-weight:600}

.amenity{
  display:grid;grid-template-columns:1fr 1fr 1fr;
  gap:8px;
}
.amenity li{
  background:var(--np-surface);
  border-radius:var(--r-md);
  padding:14px 16px;
  font-size:14px;color:var(--np-ink);
}

.steps{counter-reset:step}
.steps li{
  position:relative;
  padding:20px 20px 20px 64px;
  background:var(--np-surface);
  border-radius:var(--r-card);
  margin-bottom:12px;
}
.steps li::before{
  counter-increment:step;
  content:counter(step);
  position:absolute;left:20px;top:20px;
  width:28px;height:28px;border-radius:var(--r-pill);
  background:var(--np-ink);color:#fff;
  font-size:13px;font-weight:700;
  display:flex;align-items:center;justify-content:center;
}
.steps strong{display:block;font-size:16px;color:var(--np-ink);margin-bottom:4px}

.map-frame{
  border-radius:var(--r-xl);
  overflow:hidden;
  background:var(--np-surface);
  min-height:320px;
}
.map-frame img{width:100%;height:360px;object-fit:cover}

.news-list{display:flex;flex-direction:column;gap:12px}
.news-row{
  display:grid;grid-template-columns:96px 64px 1fr;
  gap:16px;align-items:start;
  background:var(--np-surface);
  border-radius:var(--r-card);
  padding:24px 28px;
  text-decoration:none;color:inherit;
}
.news-row:hover{background:var(--np-tint);text-decoration:none}
.news-row .date{font-size:13px;color:var(--np-muted);padding-top:4px}
.news-row .cat{
  display:inline-flex;align-items:center;justify-content:center;
  height:24px;padding:0 10px;margin-top:2px;
  background:var(--np-tint);color:var(--np-green);
  border-radius:var(--r-pill);font-size:12px;width:fit-content;
}
.news-row h3{font-size:18px;font-weight:700;color:var(--np-ink);margin-bottom:6px}
.news-row p{font-size:14px;color:var(--np-body);line-height:1.6}

.article{max-width:760px}
.article .meta{font-size:13px;color:var(--np-muted);margin-bottom:20px}
.article h2{font-size:28px;font-weight:600;color:var(--np-ink);margin:28px 0 12px}
.article p{font-size:16px;line-height:1.75;color:var(--np-body);margin-bottom:12px}

/* ===== FORM ===== */
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.field{display:flex;flex-direction:column;gap:6px}
.field.full{grid-column:1/-1}
.field label{font-size:13px;font-weight:600;color:var(--np-ink)}
.field input,.field select,.field textarea{
  height:44px;
  background:var(--np-canvas);
  color:var(--np-ink);
  border:1px solid var(--np-line);
  border-radius:var(--r-sm);
  padding:0 12px;
  font-size:16px;font-weight:400;
  outline:none;
}
.field textarea{height:120px;padding:12px;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{
  border-color:var(--np-green);
}
.field input::placeholder,.field textarea::placeholder{color:var(--np-muted-light)}
.form-note{margin-top:12px;font-size:13px;color:var(--np-muted)}
.form-ok{
  display:none;
  background:var(--np-tint);
  color:var(--np-ink);
  border-radius:var(--r-guide);
  padding:16px 18px;
  margin-bottom:16px;
  font-size:14px;line-height:1.6;
}
.form-ok.show{display:block}

.account{
  background:var(--np-tint2);
  border-radius:var(--r-card);
  padding:24px;
  margin-top:16px;
}
.account .num{
  font-family:var(--font-display);
  font-size:20px;font-weight:700;color:var(--np-ink);
  margin:8px 0 4px;
}

/* ===== FOOTER ===== */
.footer{background:var(--np-surface-alt);border-top:1px solid var(--np-line);margin-top:0}
.footer-top{padding:48px 0 36px}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:28px}
.footer-logo{
  font-family:var(--font-display);
  font-size:18px;font-weight:700;color:var(--np-ink);
  display:flex;align-items:center;gap:8px;margin-bottom:10px;
}
.footer-logo .logo-mark{width:8px;height:8px;background:var(--np-brand)}
.footer p{font-size:13px;line-height:1.6;color:var(--np-muted)}
.footer h4{font-size:13px;font-weight:700;color:var(--np-ink);margin-bottom:12px}
.footer li{margin-bottom:8px}
.footer a{color:var(--np-muted);font-size:13px}
.footer a:hover{color:var(--np-ink);text-decoration:none}
.footer-bot{
  border-top:1px solid var(--np-line);
  padding:16px 0 24px;
  display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;
}
.footer-bot p{font-size:13px;color:var(--np-muted)}

/* ===== RESPONSIVE ===== */
@media (max-width:1024px){
  .home-widgets-grid{grid-template-columns:1fr 1fr}
  .grid-4{grid-template-columns:1fr 1fr}
  .amenity{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:640px){
  .wrap{width:min(1120px,calc(100% - 28px))}
  .utilbar .util-right{display:none}
  .btn-menu{display:block}
  .gnb-nav{
    display:none;
    position:absolute;left:0;right:0;top:60px;
    background:var(--np-canvas);
    border-bottom:1px solid var(--np-line);
    flex-direction:column;align-items:stretch;
    padding:12px 16px 16px;
    gap:4px;
  }
  .gnb-nav.open{display:flex}
  .gnb-nav a{padding:12px 12px}
  .hero{padding:36px 0}
  .hero-grid{grid-template-columns:1fr;gap:20px}
  .hero h1{font-size:28px}
  .page-head h1,.sec-head h2{font-size:28px}
  .card h3{font-size:22px}
  .home-widgets-grid,.grid-2,.grid-3,.grid-4,.split,.split-eq,.form-grid{
    grid-template-columns:1fr;
  }
  .amenity{grid-template-columns:1fr}
  .news-row{grid-template-columns:1fr;gap:8px}
  .footer-grid{grid-template-columns:1fr}
  .btn-hero{width:100%;height:56px;font-size:18px}
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{transition:none !important}
}
