/* ── Variables ── */
:root {
  --cream: #FDF6EC;
  --cream-dark: #F5EAD8;
  --forest: #1E3A2F;
  --forest-light: #2D5241;
  --coral: #F4706A;
  --coral-dark: #D94F49;
  --gold: #C9963C;
  --ink: #1A1A2E;
  --warm-gray: #6B5F55;
  --light-gray: #E8DDD3;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.15; }

/* ── Nav ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 48px;
  background: rgba(253, 246, 236, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 180, 160, 0.3);
}
.nav-inner { max-width: 1200px; margin: 0 auto; }
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.02em;
}

/* ── Hero ── */
.hero {
  padding: 80px 48px 100px;
  background: var(--cream);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 900;
  color: var(--forest);
  line-height: 1.05;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--coral);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--warm-gray);
  max-width: 420px;
  line-height: 1.7;
}

/* Hero card stack */
.hero-cards {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-stack {
  position: relative;
  width: 360px;
  height: 280px;
}
.preview-card {
  position: absolute;
  width: 200px;
  background: white;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(30,58,47,0.12), 0 2px 8px rgba(30,58,47,0.06);
  transition: transform 0.3s ease;
}
.preview-card:hover { transform: translateY(-6px) rotate(-1deg) !important; }
.pc-one { top: 0; left: 0; transform: rotate(-6deg); z-index: 1; }
.pc-two { top: 40px; left: 80px; transform: rotate(3deg); z-index: 2; }
.pc-three { top: 100px; left: 40px; transform: rotate(-2deg); z-index: 3; }
.pc-art {
  width: 100%;
  height: 140px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.pc-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--forest);
}

/* Art styles */
.pc-art-1 {
  background: linear-gradient(135deg, #FFB347 0%, #FF6F61 50%, #A855F7 100%);
  position: relative;
  overflow: hidden;
}
.pc-art-1::after {
  content: '';
  position: absolute;
  bottom: 15px; left: 15px;
  width: 50px; height: 50px;
  background: #7C3AED;
  border-radius: 50%;
}
.pc-art-1::before {
  content: '';
  position: absolute;
  top: 15px; right: 25px;
  width: 30px; height: 30px;
  background: #FDE68A;
  border-radius: 50%;
}
.pc-art-2 {
  background: linear-gradient(135deg, #F472B6 0%, #FB923C 100%);
  position: relative;
  overflow: hidden;
}
.pc-art-2::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 70px;
  background: #EC4899;
  border-radius: 40% 60% 50% 50%;
}
.pc-art-3 {
  background: linear-gradient(135deg, #34D399 0%, #60A5FA 100%);
  position: relative;
  overflow: hidden;
}
.pc-art-3::after {
  content: '';
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 80px;
  background: #059669;
  border-radius: 50% 50% 45% 45%;
}

/* ── Manifesto ── */
.manifesto {
  background: var(--forest);
  padding: 100px 48px;
}
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 36px;
}
.manifesto-quote em { color: var(--coral); font-style: normal; }
.manifesto-body {
  font-size: 1.05rem;
  color: rgba(253,246,236,0.8);
  line-height: 1.8;
  margin-bottom: 20px;
}
.manifesto-body strong { color: var(--cream); }

/* ── Catalog ── */
.catalog-section {
  padding: 100px 48px;
  background: var(--cream);
}
.catalog-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.catalog-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--forest);
  margin-bottom: 56px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.catalog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30,58,47,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(30,58,47,0.14);
}
.cc-art {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.cc-art-birthday {
  background: linear-gradient(145deg, #A78BFA 0%, #F472B6 60%, #FBBF24 100%);
}
.cc-art-mom {
  background: linear-gradient(145deg, #F472B6 0%, #FB7185 50%, #FCA5A5 100%);
}
.cc-art-dragon {
  background: linear-gradient(145deg, #34D399 0%, #10B981 50%, #6EE7B7 100%);
}
.cc-art-thanks {
  background: linear-gradient(145deg, #60A5FA 0%, #818CF8 50%, #A78BFA 100%);
}
.cc-info { padding: 20px; }
.cc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: 4px;
}
.cc-artist { font-size: 0.78rem; color: var(--coral); font-weight: 700; margin-bottom: 8px; }
.cc-desc { font-size: 0.85rem; color: var(--warm-gray); line-height: 1.5; }

/* ── Why ── */
.why-section {
  padding: 100px 48px;
  background: var(--cream-dark);
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-headline {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--forest);
  margin-bottom: 28px;
  line-height: 1.2;
}
.why-body {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 16px;
}
.stat-row {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
}
.stat-desc {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-top: 6px;
}

/* ── Closing ── */
.closing-section {
  padding: 100px 48px 120px;
  background: var(--forest);
  text-align: center;
}
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 1.05rem;
  color: rgba(253,246,236,0.7);
  line-height: 1.8;
}

/* ── Footer ── */
.site-footer {
  padding: 48px;
  background: var(--cream-dark);
  border-top: 1px solid var(--light-gray);
}
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
}
.footer-tagline { font-size: 0.9rem; color: var(--warm-gray); margin-bottom: 16px; }
.footer-copy { font-size: 0.8rem; color: var(--warm-gray); opacity: 0.7; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-cards { display: none; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 24px 80px; }
  .manifesto, .catalog-section, .why-section { padding: 72px 24px; }
  .closing-section { padding: 72px 24px 96px; }
  .site-nav { padding: 16px 24px; }
  .card-grid { grid-template-columns: 1fr; }
  .stat-row { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .stat { width: calc(50% - 12px); }
  .stat-num { font-size: 3rem; }
}