:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --line: #e8d9cb;
  --line-soft: #f0e7df;
  --soft: #faf6f1;
  --soft-2: #f6efe8;
  --text: #2f241c;
  --muted: #7b6e63;
  --point: #c7a883;
  --point-dark: #8a6347;
  --button: #8b6a52;
  --button-hover: #785943;
  --shadow: 0 12px 28px rgba(53, 33, 19, 0.05);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 720px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background:#ffffff; }
body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }

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

.shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}
.shell--header { width: min(calc(100% - 24px), var(--container)); position: relative; }
.shell--content { width: min(calc(100% - 32px), var(--container)); }
.center { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(232, 217, 203, 0.55);
}
.brand-row {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  min-height: 64px;
  padding: 6px 0 8px;
}
.icon-button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  border-radius: 10px;
  transition: background-color .18s ease, transform .18s ease;
}
.icon-button:hover {
  background: rgba(199, 168, 131, 0.08);
}
.icon-button:active {
  transform: translateY(1px);
}
.icon-button span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--point-dark);
  border-radius: 999px;
  margin: 0 auto;
  transition: transform .18s ease, opacity .18s ease, width .18s ease;
}
.icon-button span:nth-child(2) { width: 14px; }
.icon-button span:nth-child(3) { width: 18px; }
.brand {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--point-dark);
}
.brand--image {
  min-height: 36px;
}
.brand--image img {
  display: block;
  width: min(253px, 100%);
  height: auto;
}
.brand-spacer { width: 40px; height: 40px; }

.top-nav {
  display: flex;
  gap: 0;
  overflow-x: auto;
  white-space: nowrap;
  border-top: 1px solid rgba(232, 217, 203, 0.55);
  border-bottom: 1px solid rgba(232, 217, 203, 0.55);
  scrollbar-width: none;
}
.top-nav::-webkit-scrollbar { display: none; }
.top-nav a {
  flex: 1 0 auto;
  min-width: 25%;
  text-align: center;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #6d6259;
  border-right: 1px solid rgba(232, 217, 203, 0.55);
  background: #fff;
}
.top-nav a:last-child { border-right: 0; }
.top-nav a.is-active {
  color: var(--point-dark);
  box-shadow: inset 0 -2px 0 var(--point-dark);
}
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  overflow: visible;
  transition: opacity .2s ease;
}
.mobile-drawer.is-open {
  opacity: 1;
}
.mobile-drawer__backdrop {
  display: none;
}
.mobile-drawer__panel {
  position: fixed;
  left: 12px;
  top: 74px;
  width: min(304px, calc(100vw - 24px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(47, 36, 28, 0.08);
  overflow: hidden;
  pointer-events: auto;
}
.mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--point-dark);
  font-weight: 800;
  background: #fff;
}
.mobile-drawer__close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--point-dark);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.mobile-drawer__nav {
  display: grid;
  background: #fff;
}
.mobile-drawer__nav a {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
  font-weight: 700;
  color: #5f534a;
  background: #fff;
}
.mobile-drawer__nav a.is-active {
  color: var(--point-dark);
  background: #fdf9f5;
}
.mobile-drawer__nav a:last-child { border-bottom: 0; }


.section {
  padding: 28px 0;
}
.section--hero { padding-top: 22px; }
.eyebrow {
  margin: 0 0 6px;
  color: var(--point);
  font-size: clamp(18px, 3vw, 20px);
  font-weight: 800;
  line-height: 1.35;
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 42px);
  line-height: 1.22;
  letter-spacing: -0.03em;
}
.hero-gallery {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 10px;
}
.hero-gallery__item {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(232, 217, 203, 0.7);
  background: var(--soft);
}
.hero-gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.hero-summary {
  margin-top: 18px;
}
.hero-summary h2 {
  margin: 0 0 6px;
  font-size: clamp(28px, 4.3vw, 34px);
  line-height: 1.28;
}
.hero-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.hero-arrow {
  margin-top: 10px;
  color: #cab5a1;
  font-size: 30px;
  line-height: 1;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 22px 16px 18px;
}
.card-lite {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: var(--paper);
  overflow: hidden;
}
.report-head .micro-title {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #b89e8a;
}
.report-head h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 32px);
  line-height: 1.32;
}
.muted {
  color: var(--muted);
  font-size: 14px;
}
.report-head .muted { margin: 10px 0 0; }

.report-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: #7d6c5e;
  font-size: 13px;
  font-weight: 700;
}
.pill.is-filled {
  background: var(--soft);
  color: var(--point-dark);
}

.report-block {
  padding-top: 18px;
}
.report-block h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
.sub-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.budget-grid {
  margin-top: 16px;
  display: grid;
  gap: 18px;
}
.budget-ring-wrap { display: flex; justify-content: center; }
.budget-ring {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: conic-gradient(#c9ab87 0 26%, #d8c5b1 26% 57%, #b9916c 57% 82%, #eaddce 82% 100%);
  display: grid;
  place-items: center;
}
.budget-ring > div {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10px;
}
.budget-ring small {
  display: block;
  font-size: 11px;
  line-height: 1.4;
  color: var(--muted);
}
.budget-ring strong {
  display: block;
  margin-top: 3px;
  font-size: 24px;
  line-height: 1.25;
}
.budget-stats {
  display: grid;
  gap: 12px;
}
.stat-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.dot {
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--point);
  flex: 0 0 auto;
}
.stat-item strong {
  display: block;
  font-size: 17px;
  line-height: 1.35;
}
.stat-item small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.message-box {
  margin-top: 14px;
  padding: 14px 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--soft);
}
.message-box strong {
  display: block;
  font-size: 16px;
  line-height: 1.5;
}
.message-box p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.mini-grid,
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.mini-card,
.recommend-box {
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  background: var(--soft);
  border: 1px solid var(--line-soft);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}
.mini-card small,
.recommend-box strong {
  display: block;
  margin-top: 4px;
}
.recommend-box strong {
  font-size: 15px;
  line-height: 1.4;
}
.trend-chart-wrap {
  margin-top: 8px;
}
.trend-chart-wrap img {
  width: min(100%, 300px);
  margin: 0 auto;
}
.report-notes {
  display: grid;
  gap: 4px;
  margin-top: 8px;
}
.report-notes small {
  color: #9a8b7c;
  line-height: 1.5;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(28px, 4.2vw, 34px);
  line-height: 1.3;
}
.section-title p { margin: 6px 0 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.step-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-bottom: 1px solid var(--line-soft);
}
.step-meta {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.step-meta span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--point-dark);
  font-size: 12px;
  font-weight: 800;
  background: #fff;
}
.step-card h3 {
  margin: 8px 0 14px;
  text-align: center;
  font-size: 15px;
}
.cta-wrap { margin-top: 18px; }
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--button);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  transition: background 0.2s ease;
}
.primary-button:hover { background: var(--button-hover); }
.cta-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.compact-links {
  display: grid;
  border-top: 1px solid var(--line-soft);
}
.compact-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
  font-weight: 700;
}
.compact-links span { color: var(--point-dark); }

.site-footer {
  padding: 26px 0 42px;
  border-top: 1px solid rgba(232, 217, 203, 0.55);
}
.footer-icons {
  display: inline-flex;
  gap: 8px;
  color: var(--point-dark);
  font-size: 14px;
}
.footer-brand {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 0.03em;
}
.footer-text {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.small {
  font-size: 12px;
  line-height: 1.65;
}
.footer-info {
  max-width: 560px;
  margin: 14px auto 0;
  color: var(--muted);
}
.footer-info p { margin: 4px 0; }

@media (max-width: 719px) {
  .hero-copy h1 { font-size: 28px; }
  .hero-summary h2,
  .section-title h2 { font-size: 24px; }
  .budget-ring { width: 170px; height: 170px; }
  .budget-ring > div { width: 110px; height: 110px; }
  .budget-ring strong { font-size: 21px; }
}

@media (max-width: 599px) {
  .shell,
  .shell--header,
  .shell--content { width: min(calc(100% - 24px), var(--container)); }
  .top-nav a { min-width: 42%; font-size: 13px; }
  .hero-gallery { grid-template-columns: 1fr 1fr; }
  .mini-grid,
  .recommend-grid,
  .steps-grid { grid-template-columns: 1fr; }
  .step-card img { aspect-ratio: 16 / 11; }
}

@media (min-width: 720px) {
  .budget-grid {
    grid-template-columns: 260px 1fr;
    align-items: center;
  }
  .report-card { padding: 26px 22px 22px; }
}


@media (max-width: 640px) {
  .brand-row { min-height: 60px; }
  .brand--image img { width: min(210px, 100%); }
  .top-nav a { min-width: 50%; }
}


.page-hero {
  padding-top: 24px;
}
.page-hero__card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff 0%, #fcf8f4 100%);
  box-shadow: var(--shadow);
  padding: 24px 20px;
}
.page-hero__eyebrow {
  margin: 0 0 8px;
  color: var(--point);
  font-size: 14px;
  font-weight: 800;
}
.page-hero__title {
  margin: 0;
  font-size: clamp(30px, 4vw, 38px);
  line-height: 1.24;
}
.page-hero__desc {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.placeholder-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.placeholder-grid--2 {
  grid-template-columns: repeat(2, minmax(0,1fr));
}
.placeholder-card {
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: #fff;
  padding: 18px 16px;
}
.placeholder-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.35;
}
.placeholder-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 640px) {
  .placeholder-grid--2 {
    grid-template-columns: 1fr;
  }
}


/* ===== Desktop refinements (white background) ===== */
@media (min-width: 1024px) {
  html, body { background: #ffffff; }

  .site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: none;
    border-bottom: 1px solid rgba(232, 217, 203, 0.55);
  }

  .shell--header {
    width: var(--container);
    background: #fff;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }

  #content {
    width: var(--container);
    margin: 0 auto;
    background: #fff;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
    min-height: calc(100vh - 180px);
  }

  #content .shell--content {
    width: min(calc(100% - 32px), calc(var(--container) - 32px));
  }

  .site-footer {
    background: #fff;
  }

  .site-footer .shell--content {
    width: var(--container);
    background: #fff;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
    padding-bottom: 48px;
  }

  .mobile-drawer__panel {
    border-radius: 18px;
    box-shadow: 0 16px 30px rgba(47, 36, 28, 0.10);
  }
}
