@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  word-break: keep-all;
}
a { color: inherit; text-decoration: none; transition: color 0.3s; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font); outline: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; }
.section-alt { padding: 100px 0; background: var(--bg-section); }

.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; display: inline-block;
  width: 24px; height: 2px; background: var(--gold);
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.3;
  letter-spacing: -0.02em; margin-bottom: 16px;
  color: var(--text);
}
.section-desc {
  font-size: 15px; color: var(--text-sub); line-height: 1.8;
  max-width: 520px;
}
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }
.section-header.center .section-label { justify-content: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; font-size: 14px; font-weight: 700;
  border-radius: var(--radius-sm); transition: all 0.3s;
  letter-spacing: 0.02em;
}
.btn-gold {
  background: var(--gold); color: #fff;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(184,146,74,0.3); }
.btn-outline {
  border: 1.5px solid var(--border-gold); color: var(--gold); background: transparent;
}
.btn-outline:hover { background: var(--gold-pale); border-color: var(--gold); }
.btn-dark {
  background: var(--text); color: #fff;
}
.btn-dark:hover { background: #333; }
.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-full { width: 100%; }

/* Cards */
.card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.4s ease;
}
.card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.card-img {
  position: relative; overflow: hidden; aspect-ratio: 16/10;
  background: var(--bg-section);
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 24px; }
.card-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.card-body p { font-size: 14px; color: var(--text-sub); line-height: 1.7; }
.card-tag {
  display: inline-block; padding: 4px 12px;
  background: var(--gold-pale); color: var(--gold);
  border-radius: 20px; font-size: 11px; font-weight: 700;
  margin-bottom: 10px;
}

/* Grid */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Reveal animation */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* More link */
.more-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--gold);
  border-bottom: 1px solid var(--border-gold); padding-bottom: 2px;
  transition: gap 0.3s;
}
.more-link:hover { gap: 12px; }
