:root {
  --bg: #fffaf2;
  --text: #1f2933;
  --muted: #637083;
  --card: #ffffff;
  --line: #eadfce;
  --primary: #f0a44c;
  --primary-dark: #d68021;
  --accent: #365449;
  --shadow: 0 18px 45px rgba(74, 52, 28, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
  background: radial-gradient(circle at top left, #fff0d5, transparent 32rem), var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 242, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(234, 223, 206, 0.8);
}

.logo {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.paw { font-size: 1.5rem; }

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  color: var(--muted);
}

.nav a:hover { color: var(--text); }

.menu-btn {
  display: none;
  border: 0;
  background: var(--card);
  border-radius: 12px;
  padding: 9px 12px;
  box-shadow: var(--shadow);
  font-size: 1.2rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  min-height: 78vh;
  padding: clamp(52px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

h1, h2, h3 { line-height: 1.12; margin: 0; letter-spacing: -0.055em; }

h1 { font-size: clamp(3rem, 8vw, 6.6rem); max-width: 850px; }

h2 { font-size: clamp(2.15rem, 5vw, 4.5rem); }

h3 { font-size: 1.45rem; }

.hero-desc {
  margin: 24px 0 0;
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid var(--line);
}

.btn.primary {
  background: var(--text);
  color: white;
  border-color: var(--text);
}

.btn.secondary {
  background: var(--card);
  color: var(--text);
}

.hero-card, .card, .quote-card, .animal-feature, .animal-small {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: 36px;
  padding: 30px;
  text-align: center;
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.haru-illustration {
  position: relative;
  display: grid;
  place-items: center;
  height: 330px;
  border-radius: 28px;
  background: linear-gradient(145deg, #ffdca8, #fff7e9);
  overflow: hidden;
  margin-bottom: 24px;
}

.sun {
  position: absolute;
  width: 130px;
  height: 130px;
  right: 32px;
  top: 28px;
  background: #ffe4a5;
  border-radius: 50%;
}

.dog-face {
  position: relative;
  width: 180px;
  height: 170px;
  border-radius: 48% 48% 42% 42%;
  background: #fff;
  box-shadow: inset 0 -14px 0 #f5eee3;
}

.ear {
  position: absolute;
  top: -34px;
  width: 62px;
  height: 92px;
  background: linear-gradient(#f3c17b, #fff);
  border-radius: 60% 60% 20% 20%;
}

.ear.left { left: 8px; transform: rotate(-18deg); }
.ear.right { right: 8px; transform: rotate(18deg); }

.eye {
  position: absolute;
  top: 72px;
  width: 15px;
  height: 15px;
  background: #5b3c2a;
  border-radius: 50%;
}

.eye.left { left: 55px; }
.eye.right { right: 55px; }

.nose {
  position: absolute;
  top: 100px;
  left: 50%;
  width: 24px;
  height: 17px;
  transform: translateX(-50%);
  background: #2c2420;
  border-radius: 50%;
}

.scarf {
  position: absolute;
  bottom: -17px;
  left: 38px;
  right: 38px;
  height: 35px;
  background: #8b5a36;
  border-radius: 999px;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head p:not(.eyebrow), .split p, .youtube p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.card {
  border-radius: 28px;
  padding: 28px;
}

.card p { color: var(--muted); }

.icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: #fff2dd;
  font-size: 1.6rem;
}

.animals {
  background: rgba(255, 244, 224, 0.7);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.animal-list {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 0.8fr);
  gap: 18px;
}

.animal-feature {
  grid-row: span 2;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  border-radius: 30px;
}

.animal-feature p { color: var(--muted); }
.animal-feature a { color: var(--primary-dark); font-weight: 900; }

.animal-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  background: #fff2dd;
  border-radius: 30px;
  font-size: 2.7rem;
}

.animal-small {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 150px;
  padding: 24px;
  border-radius: 26px;
}

.animal-small span { font-size: 2rem; }
.animal-small em { color: var(--muted); font-style: normal; }

.split, .youtube {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.reverse .quote-card { order: -1; }

.quote-card {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 28px;
  border-radius: 32px;
  color: var(--accent);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 900;
  text-align: center;
}

.youtube {
  background: #1f2933;
  color: #fff;
}

.youtube .eyebrow { color: #f6c987; }
.youtube p { color: #d9e0e8; }

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  background: #151d24;
  color: white;
}

.footer p { color: #c6d0da; margin: 6px 0 0; }

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
  color: #c6d0da;
  font-weight: 700;
}

.copyright {
  grid-column: 1 / -1;
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .menu-btn { display: inline-block; }

  .nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--card);
    box-shadow: var(--shadow);
  }

  .nav.open { display: flex; }

  .hero, .grid, .animal-list, .split, .youtube {
    grid-template-columns: 1fr;
  }

  .animal-feature { grid-row: auto; }

  .reverse .quote-card { order: 0; }

  .footer { grid-template-columns: 1fr; }

  .footer-links { flex-wrap: wrap; }
}
