:root{
  --bg:#ffffff;
  --text:#2b2b2b;
  --muted:#6b7280;
  --line:#e5e7eb;
  --brand:#0b4f7a;
  --max:980px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:"Noto Sans KR", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.65;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}

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

.top{
  position:sticky;
  top:0;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(160%) blur(10px);
  border-bottom:1px solid var(--line);
  z-index:10;
}

.top__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 20px;
}

.brand__logo{
  max-width:210px;
  width:210px;
  height:auto;
}

.nav{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav__link{
  font-size:14px;
  color:var(--muted);
  padding:6px 10px;
  border-radius:999px;
  border:1px solid transparent;
}
.nav__link:hover{
  color:var(--text);
  border-color:var(--line);
}

.hero{
  padding:44px 0 18px;
  text-align:center;
}
.hero__title{
  margin:0;
  font-size:34px;
  letter-spacing:-0.4px;
}
.hero__subtitle{
  margin:10px 0 0;
  color:var(--muted);
  font-size:16px;
}

.rule{
  margin:26px auto;
  height:1px;
  width:100%;
  background:var(--line);
}

.section{
  padding:6px 0 26px;
}
.section__title{
  margin:0 0 12px;
  font-size:20px;
  letter-spacing:-0.2px;
}
.section__head{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:12px;
}
.section__desc{
  margin:0;
  color:var(--muted);
  font-size:13px;
}

.lead{
  margin:0;
  color:var(--text);
  font-size:15px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.card{
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px 14px 12px;
  background:#fff;
}
.card__title{
  margin:0 0 8px;
  font-size:15px;
}
.card__desc{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.bullets{
  margin:0;
  padding-left:18px;
  color:var(--text);
}
.bullets li{margin:8px 0}

.stack{display:flex;flex-direction:column;gap:10px}
.value{
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 14px;
}
.value__title{font-weight:700}
.value__desc{color:var(--muted);font-size:14px;margin-top:4px}

.process{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.process__step{
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 12px;
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--text);
  font-size:14px;
}
.process__dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--brand);
  display:inline-block;
}

/* Journey: 2-year blocks with side photo (YANATRIP-like) */
.journey{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.journeyCard{
  display:grid;
  grid-template-columns:1.35fr .95fr;
  gap:14px;
  align-items:stretch;
}
.journeyCard--rev{
  grid-template-columns:.95fr 1.35fr;
}
.journeyCard--rev .journeyCard__text{order:2}
.journeyCard--rev .journeyCard__media{order:1}

.journeyCard__text{
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px 14px 12px;
  background:#fff;
}
.journeyCard__years{
  font-weight:800;
  color:var(--brand);
  font-size:16px;
  margin-bottom:8px;
}
.journeyCard__list{
  margin:0;
  padding-left:18px;
  color:var(--text);
}
.journeyCard__list li{margin:7px 0}
.journeyCard__media{
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  min-height:220px;
}
.journeyCard__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.footer{
  margin-top:38px;
  border-top:1px solid var(--line);
  background:#fff;
}
.footer__inner{
  padding:18px 20px;
  display:flex;
  gap:20px;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
}
.footer__brand{display:flex;gap:12px;align-items:center}
.footer__logo{max-width:170px;width:170px}
.footer__note{color:var(--muted);font-size:13px;max-width:420px}

.footer__metaTitle{font-weight:700;margin-bottom:8px}
.footer__metaList{display:flex;flex-direction:column;gap:6px}
.metaRow{display:flex;gap:12px;justify-content:space-between;min-width:260px}
.metaKey{color:var(--muted)}
.metaVal{color:var(--text)}

.footer__bottom{
  border-top:1px solid var(--line);
  background:#fafafa;
}
.footer__bottomInner{
  padding:12px 20px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:12px;
}
.footer__powered{white-space:nowrap}

@media (max-width: 980px){
  .journeyCard, .journeyCard--rev{grid-template-columns:1fr}
  .journeyCard--rev .journeyCard__text{order:1}
  .journeyCard--rev .journeyCard__media{order:2}
  .journeyCard__media{min-height:220px}
}

@media (max-width: 900px){
  .grid{grid-template-columns:repeat(2, 1fr)}
}
@media (max-width: 640px){
  .top__inner{padding:10px 0}
  .brand__logo{width:180px;max-width:180px}
  .grid{grid-template-columns:1fr}
}
