:root {
  --bg: #FFF8F0;
  --bg-warm: #FFF1E0;
  --fg: #2D2A26;
  --fg-soft: #6B6560;
  --accent: #E8524F;
  --accent-light: #FDDDD6;
  --secondary: #4A90A4;
  --tertiary: #F4C542;
  --purple: #9B72CF;
  --green: #6BBF8A;
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

.accent { color: var(--accent); }

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(244, 197, 66, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(155, 114, 207, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(232, 82, 79, 0.06) 0%, transparent 70%),
    var(--bg);
}

.hero-inner { max-width: 720px; position: relative; }

.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-soft);
  background: var(--bg-warm);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--fg-soft);
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-soft);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 32px;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: #d44442;
  box-shadow: 0 6px 24px rgba(232, 82, 79, 0.35);
  transform: translateY(-2px);
}

.hero-doodles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.doodle {
  position: absolute;
  font-size: 24px;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
}

.d1 { top: 5%; left: 8%; color: var(--accent); animation-delay: 0s; }
.d2 { top: 15%; right: 12%; color: var(--purple); animation-delay: 1s; font-size: 32px; }
.d3 { bottom: 20%; left: 5%; color: var(--tertiary); animation-delay: 2s; }
.d4 { bottom: 10%; right: 8%; color: var(--accent); animation-delay: 3s; }
.d5 { top: 50%; left: 50%; color: var(--green); animation-delay: 4s; font-size: 18px; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

/* ===== PRODUCTS ===== */
.products {
  padding: 100px 24px;
  background: var(--bg-warm);
}

.products-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}

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

.product-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.card-notebooks { border-color: var(--accent-light); }
.card-bookmarks { border-color: rgba(155, 114, 207, 0.2); }
.card-pouches { border-color: rgba(244, 197, 66, 0.3); }
.card-tees { border-color: rgba(107, 191, 138, 0.25); }

.card-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-card p {
  color: var(--fg-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ===== QUOTES MARQUEE ===== */
.quotes {
  padding: 80px 0;
  overflow: hidden;
  background: var(--fg);
  color: var(--bg);
}

.quotes-inner {
  text-align: center;
}

.quotes .section-label {
  color: var(--bg);
  margin-bottom: 40px;
  padding: 0 24px;
}

.quote-marquee {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.quote-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: scroll 25s linear infinite;
  width: max-content;
}

.quote-item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  opacity: 0.9;
}

.quote-divider {
  color: var(--accent);
  font-size: 1rem;
  opacity: 0.5;
}

.quotes-caption {
  margin-top: 40px;
  font-size: 0.95rem;
  opacity: 0.6;
  padding: 0 24px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== STORY ===== */
.story {
  padding: 100px 24px;
  background: var(--bg);
}

.story-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.story-text p {
  color: var(--fg-soft);
  margin-bottom: 16px;
  font-size: 1rem;
}

.story-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-block {
  background: linear-gradient(135deg, var(--accent-light), rgba(155, 114, 207, 0.15));
  border-radius: var(--radius);
  width: 280px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.big-star {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 12px;
}

.visual-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 60px 24px;
  text-align: center;
  background: var(--bg-warm);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-inner { max-width: 600px; margin: 0 auto; }

.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--fg-soft);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-copy {
  color: var(--fg-soft);
  font-size: 0.8rem;
  opacity: 0.6;
}

.footer-social {
  margin: 20px 0 12px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  border: 2px solid rgba(45, 42, 38, 0.12);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-link:hover {
  color: #1877F2;
  border-color: #1877F2;
  background: rgba(24, 119, 242, 0.07);
}

.social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-card { padding: 32px 24px; }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .visual-block {
    width: 220px;
    height: 220px;
  }

  .hero { min-height: 80vh; padding: 60px 20px; }

  .quote-item { font-size: 1.1rem; }
}