/* ===========================================
   카자흐스탄 여행사 — Entrada 디자인 시스템
   화이트 + 민트 + 코랄 + 옐로우
   =========================================== */

:root {
  /* COLOR TOKENS */
  --bg: #ffffff;
  --soft: #f8faf8;
  --ink: #0f1a14;
  --gray-d: #4a5a52;
  --gray: #8a9a92;
  --gray-l: #d8e0dc;
  --mint: #2dd4a8;
  --mint-d: #0fa07c;
  --coral: #ff7f5c;
  --yellow: #fde047;

  /* SHADOWS */
  --shadow-sm: 0 2px 8px rgba(15, 26, 20, 0.04);
  --shadow-md: 0 8px 30px rgba(15, 26, 20, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 26, 20, 0.12);
  --shadow-xl: 0 24px 60px rgba(15, 26, 20, 0.18);

  /* RADIUS */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-pill: 100px;

  /* TYPE */
  --f-sans: 'Poppins', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* SPACING */
  --max-w: 1400px;
  --gap: 24px;
}

body {
  font-family: var(--f-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* === TOP STRIP === */
.top-strip {
  background: var(--ink);
  color: #fff;
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.5px;
}
.top-strip strong { color: var(--mint); font-weight: 600; }

/* === HEADER === */
header.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--gray-l);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}
.logo {
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.logo .dot {
  width: 36px;
  height: 36px;
  background: var(--mint);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}
.nav-menu { display: flex; gap: 32px; align-items: center; }
.nav-menu a {
  color: var(--gray-d);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--mint-d); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: inline-flex;
  background: var(--soft);
  border: 1px solid var(--gray-l);
  border-radius: var(--r-pill);
  padding: 3px;
  gap: 0;
}
.lang-toggle button {
  padding: 6px 13px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-d);
  transition: all 0.2s;
  letter-spacing: 0.5px;
  font-family: inherit;
}
.lang-toggle button:hover { color: var(--ink); }
.lang-toggle button.active {
  background: var(--mint);
  color: #fff;
  box-shadow: 0 2px 6px rgba(45, 212, 168, 0.4);
}
.nav-cta {
  background: var(--mint);
  color: #fff;
  padding: 11px 22px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--mint-d); }
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: var(--soft);
  border-radius: var(--r-md);
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* === HERO === */
.hero {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, var(--soft) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 212, 168, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--gray-l);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.pill-tag {
  background: var(--mint);
  color: #fff;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  word-break: keep-all;
}
.hero h1 .highlight {
  color: var(--mint-d);
  position: relative;
  display: inline-block;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--yellow);
  z-index: -1;
  opacity: 0.6;
}
.hero p.lede {
  font-size: 17px;
  color: var(--gray-d);
  margin-bottom: 32px;
  max-width: 480px;
  word-break: keep-all;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.btn {
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary { background: var(--mint); color: #fff; }
.btn-primary:hover { background: var(--mint-d); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: #fff; color: var(--ink); border: 1.5px solid var(--gray-l); }
.btn-secondary:hover { border-color: var(--ink); }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { filter: brightness(0.95); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--mint-d); }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-l);
}
.stat .num { font-size: 28px; font-weight: 800; color: var(--ink); }
.stat .lbl { font-size: 13px; color: var(--gray-d); margin-top: 2px; }

.hero-img {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-d) 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: var(--shadow-xl);
}
.hero-img.has-image { background-image: url('../images/hero/hero-1.jpg'); }
.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, transparent 0%, rgba(15, 26, 20, 0.15) 100%);
}
.floating-card {
  position: absolute;
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.fc-1 { top: 24px; left: -24px; }
.fc-2 { bottom: 32px; right: -32px; }
.fc-3 { top: 50%; right: -16px; transform: translateY(-50%); }
.fc-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}
.fc-1 .fc-icon { background: var(--coral); }
.fc-3 .fc-icon { background: var(--yellow); color: var(--ink); }
.floating-card strong { display: block; font-size: 13px; font-weight: 700; }
.floating-card span { font-size: 11px; color: var(--gray); }

/* === MARKETPLACE / GRID SECTION === */
.section {
  padding: 80px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-head h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
}
.section-head .cnt { color: var(--gray); font-size: 14px; margin-top: 6px; }

.mp-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
}
.filters {
  background: var(--soft);
  border-radius: var(--r-lg);
  padding: 28px;
  height: fit-content;
  position: sticky;
  top: 100px;
}
.filters h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filters h4 .clear {
  font-size: 12px;
  color: var(--mint-d);
  font-weight: 500;
  cursor: pointer;
}
.filter-group {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-l);
}
.filter-group:last-child { border: none; padding-bottom: 0; }
.filter-group .ftitle {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: var(--gray-d);
}
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; }
.check input { width: 18px; height: 18px; accent-color: var(--mint-d); cursor: pointer; }
.check .cnt { margin-left: auto; color: var(--gray); font-size: 12px; }

/* === PACKAGE CARDS === */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product {
  background: #fff;
  border: 1px solid var(--gray-l);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.product:hover {
  border-color: var(--mint);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.p-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--soft);
  position: relative;
}
.p-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
}
.p-tag.hot { background: var(--coral); color: #fff; }
.p-tag.new { background: var(--ink); color: #fff; }
.p-tag.default { background: var(--mint); color: #fff; }
.p-fav {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  color: var(--coral);
  box-shadow: var(--shadow-sm);
}
.p-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.p-loc {
  font-size: 12px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.p-body h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  word-break: keep-all;
}
.p-subtitle {
  font-size: 13px;
  color: var(--gray-d);
  margin-bottom: 14px;
  line-height: 1.45;
  word-break: keep-all;
  min-height: 38px;
}
.p-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--gray-d);
  margin-bottom: 16px;
}
.p-meta span { display: inline-flex; align-items: center; gap: 4px; }

.p-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--gray-l);
  margin-top: auto;
  gap: 12px;
}
.p-quote { display: flex; flex-direction: column; }
.p-quote .lbl { font-size: 11px; color: var(--gray); font-weight: 500; }
.p-quote .val { font-size: 15px; font-weight: 700; color: var(--mint-d); }
.p-btn {
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
}
.p-btn:hover { background: var(--mint-d); }

/* === FEATURES STRIP === */
.features {
  padding: 80px 0;
  background: var(--soft);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feat {
  background: #fff;
  padding: 28px;
  border-radius: var(--r-lg);
  text-align: center;
}
.feat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.feat:nth-child(1) .feat-icon { background: rgba(45, 212, 168, 0.15); }
.feat:nth-child(2) .feat-icon { background: rgba(255, 127, 92, 0.15); }
.feat:nth-child(3) .feat-icon { background: rgba(253, 224, 71, 0.25); }
.feat:nth-child(4) .feat-icon { background: rgba(15, 26, 20, 0.08); }
.feat h4 { font-size: 17px; margin-bottom: 8px; font-weight: 700; }
.feat p { font-size: 13px; color: var(--gray-d); word-break: keep-all; }

/* === CTA STRIP === */
.cta-strip {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--ink) 0%, #1c2e25 100%);
  color: #fff;
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  word-break: keep-all;
}
.cta-strip p {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip .btn-primary { background: var(--mint); }
.cta-strip .btn-primary:hover { background: #fff; color: var(--ink); }

/* === FOOTER === */
footer.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 60px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
footer h5 { font-size: 14px; margin-bottom: 16px; color: var(--mint); font-weight: 700; }
footer ul li { padding: 6px 0; font-size: 13px; opacity: 0.75; }
footer ul li a:hover { opacity: 1; color: var(--mint); }
.foot-about p { font-size: 13px; opacity: 0.7; margin-top: 16px; line-height: 1.6; }
.foot-contact { font-size: 13px; opacity: 0.8; }
.foot-contact .row { display: flex; gap: 8px; padding: 4px 0; }
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 12px;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 1000px) {
  .container { padding: 0 20px; }
  .hero { padding: 40px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-img { aspect-ratio: 16 / 12; }
  .fc-1 { left: 12px; }
  .fc-2 { right: 12px; }
  .fc-3 { right: 12px; }
  .mp-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--gray-l);
    box-shadow: var(--shadow-md);
  }
  .nav-toggle { display: inline-flex; }
  .section { padding: 60px 0; }
}

@media (max-width: 560px) {
  .products { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 18px; }
  .stat .num { font-size: 22px; }
  .floating-card { padding: 10px 14px; }
  .fc-icon { width: 36px; height: 36px; font-size: 16px; }
}

/* ===== SHYM MEANING SECTION ===== */
.shym-meaning {
  background: linear-gradient(135deg, #f0faf7 0%, #e8f5f0 50%, #f5f0ff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.shym-meaning::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(var(--mint-rgb,52,199,136),0.08) 0%, transparent 70%);
  pointer-events: none;
}
.shym-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}
.shym-symbol {
  font-size: clamp(90px, 12vw, 148px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--mint-d,#20b076), #7c5cbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -4px;
  user-select: none;
  flex-shrink: 0;
}
.shym-title {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  color: var(--ink,#1a1a2e);
  margin-bottom: 20px;
  line-height: 1.3;
}
.shym-lead {
  font-size: 16px;
  line-height: 1.85;
  color: var(--gray-d,#555);
  margin-bottom: 24px;
}
.shym-quote {
  border-left: 4px solid var(--mint-d,#20b076);
  padding: 16px 20px 16px 24px;
  margin: 0 0 24px 0;
  background: rgba(255,255,255,0.7);
  border-radius: 0 12px 12px 0;
  font-size: 17px;
  line-height: 2;
  color: var(--ink,#1a1a2e);
  font-style: normal;
}
.shym-quote em {
  color: var(--mint-d,#20b076);
  font-style: normal;
  font-weight: 700;
}
.shym-body {
  font-size: 15px;
  line-height: 2;
  color: var(--gray-d,#555);
  margin-bottom: 20px;
}
.shym-close {
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink,#1a1a2e);
  background: rgba(255,255,255,0.8);
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid rgba(32,176,118,0.2);
}
.shym-close strong {
  color: var(--mint-d,#20b076);
}
@media (max-width: 768px) {
  .shym-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .shym-symbol {
    font-size: 80px;
    letter-spacing: -2px;
  }
  .shym-quote {
    text-align: left;
  }
}
