:root{
  --ivory:#FAF8F4;
  --bronze:#8A6A43;
  --bronze-dark:#5F462C;
  --charcoal:#2E2924;
  --muted:#7D7369;
  --line:#E5DED3;
  --card:#FFFDF9;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Pretendard","Apple SD Gothic Neo","Noto Sans KR",system-ui,sans-serif;
  background:var(--ivory);
  color:var(--charcoal);
  letter-spacing:-0.035em;
}
a{color:inherit;text-decoration:none}

.nav{
  width:min(1120px,calc(100% - 40px));
  height:76px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--line);
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  font-size:21px;
}
.brand-mark{
  width:34px;height:34px;
  display:grid;place-items:center;
  background:var(--bronze);
  color:white;
  border-radius:10px;
  font-size:18px;
}
.nav nav{
  display:flex;
  align-items:center;
  gap:26px;
  color:var(--muted);
  font-size:15px;
}
.nav-cta{
  color:var(--bronze-dark);
  font-weight:700;
}

.hero{
  width:min(1120px,calc(100% - 40px));
  margin:0 auto;
  padding:104px 0 72px;
}
.eyebrow{
  margin:0 0 18px;
  color:var(--bronze);
  font-size:13px;
  font-weight:800;
  letter-spacing:0.12em;
}
h1{
  margin:0;
  font-size:clamp(52px,8vw,92px);
  line-height:0.98;
  letter-spacing:-0.07em;
}
.sub{
  margin:28px 0 0;
  color:var(--muted);
  font-size:21px;
  line-height:1.65;
}
.mobile{display:none}
.actions{
  display:flex;
  gap:12px;
  margin-top:38px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:50px;
  padding:0 22px;
  border-radius:999px;
  font-weight:800;
  font-size:15px;
}
.primary{
  background:var(--bronze);
  color:white;
  box-shadow:0 10px 30px rgba(138,106,67,.18);
}
.secondary{
  border:1px solid var(--line);
  background:rgba(255,255,255,.45);
}
.mini-dashboard{
  margin-top:74px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border:1px solid var(--line);
  border-radius:28px;
  background:rgba(255,253,249,.72);
  overflow:hidden;
}
.mini-dashboard div{
  padding:30px;
  border-right:1px solid var(--line);
}
.mini-dashboard div:last-child{border-right:0}
.mini-dashboard span{
  display:block;
  color:var(--muted);
  font-size:14px;
  font-weight:700;
}
.mini-dashboard strong{
  display:block;
  margin-top:14px;
  font-size:42px;
  letter-spacing:-0.04em;
}
.mini-dashboard small{
  display:block;
  margin-top:6px;
  color:var(--muted);
}

.grid-section{
  width:min(1120px,calc(100% - 40px));
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.card{
  min-height:330px;
  padding:32px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:28px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.num{
  margin:0;
  color:var(--bronze);
  font-weight:900;
}
.card h2{
  margin:24px 0 0;
  font-size:32px;
}
.card p:not(.num){
  margin:18px 0 0;
  color:var(--muted);
  line-height:1.75;
}
.text-link{
  margin-top:32px;
  color:var(--bronze-dark);
  font-weight:800;
}
.statement{
  width:min(1120px,calc(100% - 40px));
  margin:96px auto;
  padding:70px;
  background:var(--charcoal);
  color:white;
  border-radius:34px;
}
.statement h2{
  margin:0;
  font-size:clamp(32px,5vw,54px);
  line-height:1.15;
}
.statement p{
  margin:22px 0 0;
  color:rgba(255,255,255,.7);
  font-size:18px;
}
.contact{
  width:min(1120px,calc(100% - 40px));
  margin:0 auto 70px;
  padding:42px;
  border:1px solid var(--line);
  border-radius:30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(255,253,249,.72);
}
.contact h2{
  margin:0;
  font-size:34px;
}
.contact p:last-child{
  margin:12px 0 0;
  color:var(--muted);
}
footer{
  width:min(1120px,calc(100% - 40px));
  margin:0 auto;
  padding:30px 0 44px;
  border-top:1px solid var(--line);
  color:var(--muted);
  display:flex;
  justify-content:space-between;
}
footer strong{color:var(--charcoal)}

@media(max-width:800px){
  .nav nav{display:none}
  .hero{padding:72px 0 52px}
  .mobile{display:block}
  .actions{flex-direction:column}
  .btn{width:100%}
  .mini-dashboard,.grid-section{grid-template-columns:1fr}
  .mini-dashboard div{border-right:0;border-bottom:1px solid var(--line)}
  .mini-dashboard div:last-child{border-bottom:0}
  .statement{padding:38px}
  .contact{display:block}
  .contact .btn{margin-top:26px}
  footer{display:block}
  footer span{display:block;margin-top:8px}
}
