:root {
  --cream: #fff7e8;
  --cream-2: #fffdf7;
  --mint: #78b990;
  --mint-dark: #4f8b6a;
  --yellow: #ffd768;
  --peach: #f9b6a7;
  --ink: #2e3035;
  --muted: #73786f;
  --card: rgba(255, 255, 255, 0.88);
  --shadow: 0 22px 60px rgba(114, 89, 44, 0.13);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 25%, rgba(120, 185, 144, .18), transparent 19rem),
    radial-gradient(circle at 92% 18%, rgba(150, 211, 232, .28), transparent 18rem),
    linear-gradient(180deg, var(--cream), #fff);
  font-family: "Nunito", "Noto Sans KR", Arial, sans-serif;
  word-break: keep-all;
}

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

.site-shell { width: min(1240px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: sticky;
  top: 18px;
  z-index: 10;
  margin: 18px auto 28px;
  padding: 16px 24px;
  border-radius: 34px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 28px;
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: .95;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #dff3df;
  font-size: 1.7rem;
}

.brand span span:nth-child(1) { color: var(--mint-dark); }
.brand span span:nth-child(2) { color: #ec9259; }
.brand span span:nth-child(3) { color: #73a9cf; }

.nav-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: .94rem;
  font-weight: 800;
}

.nav-links a.active,
.nav-links a:hover { color: var(--mint-dark); }

.nav-actions { display: flex; gap: 12px; font-size: 1.25rem; }

.hero {
  min-height: 560px;
  border-radius: 44px;
  overflow: hidden;
  position: relative;
  background: var(--cream-2);
  box-shadow: var(--shadow);
}

.hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 247, 232, .98) 0%, rgba(255, 247, 232, .82) 42%, transparent 68%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(560px, 90%);
  padding: 86px 0 80px 86px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--mint-dark);
  background: #e7f3df;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin: 22px 0 18px;
  font-size: clamp(3.1rem, 7vw, 5.8rem);
  line-height: .93;
  letter-spacing: -.055em;
  font-weight: 1000;
}

h1 em { color: var(--mint-dark); font-style: normal; }

.lead {
  color: #5f665f;
  max-width: 420px;
  font-size: 1.06rem;
  line-height: 1.75;
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(84, 121, 84, .13);
}

.btn.primary { background: var(--mint); color: white; }
.btn.yellow { background: var(--yellow); color: #4f3a11; }
.btn.light { background: #fff; border: 1px solid #d9dccd; }

.section { padding: 58px 0 0; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section h2 { font-size: 1.85rem; letter-spacing: -.04em; }

.dino-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.dino-card,
.product-card,
.story-card,
.activity-card {
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 14px 35px rgba(105, 88, 52, .09);
  overflow: hidden;
}

.dino-card img,
.product-card img {
  aspect-ratio: 1;
  object-fit: cover;
}

.card-copy { padding: 16px 18px 20px; text-align: center; }
.card-copy h3 { margin-bottom: 5px; font-size: 1rem; }
.card-copy p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.5; }

.story-split {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 22px;
  align-items: stretch;
}

.story-card { padding: 34px; display: flex; flex-direction: column; justify-content: center; }
.story-card h2 { font-size: 2rem; line-height: 1.06; }
.story-card p { color: var(--muted); line-height: 1.75; }
.story-image { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); }
.story-image img { height: 100%; min-height: 340px; object-fit: cover; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.price { color: var(--mint-dark); font-weight: 900; }

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.activity-card { padding: 28px; }
.activity-card strong { display: block; font-size: 2rem; margin-bottom: 10px; }
.activity-card p { color: var(--muted); line-height: 1.65; }

.footer {
  margin-top: 70px;
  padding: 44px 0;
  background: linear-gradient(180deg, rgba(210, 240, 222, .7), rgba(205, 238, 225, 1));
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.footer nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.footer a, .footer p { color: #526158; line-height: 1.8; }

.page-hero {
  border-radius: 36px;
  padding: 54px;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow);
}

.page-hero h1 { font-size: clamp(2.7rem, 5vw, 4.9rem); }

@media (max-width: 920px) {
  .nav { grid-template-columns: 1fr; text-align: center; }
  .nav-links { flex-wrap: wrap; gap: 18px; }
  .nav-actions { justify-content: center; }
  .hero { min-height: 680px; }
  .hero img { object-position: 62% center; }
  .hero::after { background: linear-gradient(180deg, rgba(255, 247, 232, .98) 0%, rgba(255, 247, 232, .78) 56%, transparent 100%); }
  .hero-copy { padding: 46px 28px; }
  .dino-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .story-split, .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .site-shell { width: min(100% - 24px, 1240px); }
  .nav { top: 8px; border-radius: 26px; padding: 14px; }
  .brand { justify-content: center; }
  .nav-links { font-size: .82rem; }
  .hero { border-radius: 28px; min-height: 640px; }
  .dino-grid, .product-grid, .activity-grid, .footer nav { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  .page-hero { padding: 34px 24px; }
}
