:root {
  --bg-1: #faf7f1;
  --bg-2: #f6f6f2;
  --bg-3: #f3f7f4;
  --green: #183326;
  --green-2: #224735;
  --gold: #c69b3d;
  --text-soft: rgba(24, 51, 38, 0.68);
  --border-soft: rgba(24, 51, 38, 0.08);
  --white-soft: rgba(255, 255, 255, 0.78);
  --shadow-lg: 0 24px 80px rgba(24, 51, 38, 0.08);
  --shadow-md: 0 20px 70px rgba(24, 51, 38, 0.06);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Noto Sans KR', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--green);
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 45%, var(--bg-3) 100%);
}

a { color: inherit; text-decoration: none; }

.page {
  min-height: 100vh;
  padding: 24px 16px;
}

.layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.card, .glass {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-md);
  padding: 24px;
}

.hero {
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(244, 196, 210, 0.28), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 223, 162, 0.22), transparent 26%),
    radial-gradient(circle at bottom, rgba(196, 227, 212, 0.24), transparent 34%);
  pointer-events: none;
}

.hero > *, .card > * { position: relative; z-index: 1; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: rgba(24, 51, 38, 0.78);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 51, 38, 0.1);
  box-shadow: 0 4px 14px rgba(24, 51, 38, 0.04);
}

.pill.soft {
  background: rgba(24, 51, 38, 0.05);
  border: 0;
  box-shadow: none;
}

.pill.small {
  padding: 7px 12px;
  font-size: 12px;
}

.icon { font-size: 14px; }

.hero-title {
  margin: 18px 0 0;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-size: clamp(22px, 3vw, 30px);
}

.hero-title span { display: block; }
.highlight {
  color: var(--gold);
}

.hero-title .highlight {
  margin-top: 6px;
  white-space: nowrap;
  font-size: 0.98em;
}

.block { display: block; margin-top: 4px; }

.hero-desc, .card p {
  color: var(--text-soft);
  line-height: 1.85;
  font-size: 15px;
}

.hero-desc {
  max-width: 720px;
  margin-top: 16px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover { background: var(--green-2); }
.btn-secondary {
  background: #fff;
  color: var(--green);
  border: 1px solid rgba(24, 51, 38, 0.12);
}
.btn-secondary:hover { background: #f8f6f1; }

.picks-grid,
.category-grid,
.flow-list,
.side-column {
  display: grid;
  gap: 12px;
}

.picks-grid {
  margin-top: 28px;
}

.mini-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.75);
  padding: 16px;
  box-shadow: 0 8px 22px rgba(24, 51, 38, 0.04);
}

.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 18px;
  background: rgba(24, 51, 38, 0.06);
  margin-bottom: 12px;
}

.mini-card h3,
.category h3,
.flow-title,
.location-title,
.contact-email,
.card h2 {
  margin: 0;
  font-weight: 600;
}

.mini-card h3 { font-size: 15px; }
.mini-card p { margin: 6px 0 0; font-size: 14px; line-height: 1.6; }

.signature-wrap {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(135deg, rgba(255,255,255,0.88), rgba(247,243,234,0.9), rgba(241,248,243,0.88));
  padding: 20px;
}

.signature-panel {
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #183326 0%, #224735 52%, #c69b3d 100%);
  padding: 24px;
  color: #fff;
}

.signature-label,
.section-label,
.contact-label,
.location-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.signature-label { color: rgba(255,255,255,0.74); }
.section-label, .location-label { color: var(--gold); }
.contact-label { color: rgba(255,255,255,0.72); }

.signature-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin-top: 18px;
}

.signature-title-main {
  font-size: clamp(34px, 6vw, 54px);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
}
.signature-title-sub {
  font-size: clamp(22px, 4vw, 34px);
  color: #f3d48d;
  line-height: 1;
  letter-spacing: 0.08em;
}
.signature-desc {
  margin-top: 14px;
  max-width: 860px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.map-panel {
  margin-top: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  padding: 20px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.72);
}

.category-grid { margin-top: 14px; }

.category {
  border-radius: 26px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(24, 51, 38, 0.06);
  border: 1px solid rgba(255,255,255,0.84);
}
.category.mood { background: linear-gradient(135deg, #fff1f5, rgba(254, 205, 211, 0.7)); }
.category.place { background: linear-gradient(135deg, #ecfdf5, rgba(217, 249, 157, 0.7)); }
.category.taste { background: linear-gradient(135deg, #fffbeb, rgba(254, 215, 170, 0.7)); }
.category.people { background: linear-gradient(135deg, #f0f9ff, rgba(199, 210, 254, 0.7)); }

.category-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.category-icon {
  width: 48px;
  height: 48px;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(24, 51, 38, 0.08);
}
.category-sub {
  margin-top: 4px;
  color: rgba(24, 51, 38, 0.62);
  font-size: 14px;
}
.category p {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.78);
}

.card h2 {
  margin-top: 14px;
  font-size: clamp(21px, 2.6vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.flow-list { margin-top: 20px; }
.flow-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-height: 112px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(24, 51, 38, 0.06);
  background: #faf8f4;
}
.flow-step {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #fff;
  color: var(--gold);
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(24, 51, 38, 0.05);
}
.flow-title { font-size: 18px; }
.flow-item p { margin: 8px 0 0; font-size: 14px; line-height: 1.65; }

.contact-box {
  margin-top: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #183326 0%, #244a37 100%);
  padding: 20px;
  color: #fff;
}
.contact-email {
  display: block;
  margin-top: 10px;
  font-size: clamp(22px, 4vw, 28px);
  color: #f3d48d;
  word-break: break-all;
}

.reply-box,
.location-box {
  margin-top: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(24, 51, 38, 0.06);
  padding: 20px;
}
.reply-box {
  margin-top: 32px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(24, 51, 38, 0.04);
}
.reply-box p { margin: 12px 0 0; }
.location-box { background: #faf8f4; }
.location-title {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.5;
}
.location-sub {
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 15px;
}

.hidden { display: none; }

@media (min-width: 768px) {
  .page { padding: 32px; }
  .card, .glass { padding: 28px; }
  .picks-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .layout {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .hero-title .highlight {
    white-space: normal;
    font-size: 0.94em;
  }
  .signature-wrap,
  .signature-panel,
  .map-panel,
  .reply-box,
  .location-box,
  .contact-box,
  .card,
  .glass {
    border-radius: 22px;
  }
}
