/* ═══════════════════════════════════════════
   CoverCraft Studio — Portfolio Site CSS
   Design system: zodiac aesthetic
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── Design tokens ── */
:root {
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --cream: #FFF8F0;
  --cream-dark: #F5EAD7;
  --rose: #E54D85;
  --rose-light: #F7E0EA;
  --rose-dark: #B83760;
  --charcoal: #1A1A2E;
  --mid: #6B6B7B;
  --border: #E8D8E0;
  --white: #ffffff;

  --zodiac-bg: #2D1B69;
  --zodiac-fg: #C9A5FF;
  --zodiac-accent: #FFD700;
  --rap-bg: #1A1A1A;
  --rap-fg: #F5E06E;
  --rap-accent: #FF4757;
  --beauty-bg: #F9E8EE;
  --beauty-fg: #D4899B;
  --beauty-accent: #E8A0B5;
  --anime-bg: #1E3A5F;
  --anime-fg: #7EC8E3;
  --anime-accent: #FF8EC4;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 4px 24px rgba(26,26,46,0.08);
  --shadow-card: 0 8px 40px rgba(26,26,46,0.12);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--charcoal); }
p { max-width: 60ch; }
a { color: inherit; }

/* ── Layout helpers ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,248,240,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.wordmark span { color: var(--rose); }
.site-nav { display: flex; gap: 36px; align-items: center; }
.site-nav a {
  color: var(--mid);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transition: width 0.25s;
}
.site-nav a:hover { color: var(--charcoal); }
.site-nav a:hover::after { width: 100%; }
.nav-cta {
  background: var(--rose);
  color: white !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--rose-dark); transform: translateY(-1px); }

/* ── Hero ── */
.hero {
  padding: 120px 0 100px;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(229,77,133,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rose-light);
  color: var(--rose-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em {
  font-style: normal;
  color: var(--rose);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--mid);
  max-width: 52ch;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}
.btn-primary {
  background: var(--rose);
  color: white;
  box-shadow: 0 4px 20px rgba(229,77,133,0.35);
}
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(229,77,133,0.4); }
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-2px); }

/* ── Style Category Grid ── */
.showcase-section { padding: 96px 0; }
.showcase-header { text-align: center; margin-bottom: 64px; }
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
.section-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.section-sub {
  color: var(--mid);
  font-size: 1rem;
  margin-top: 12px;
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* Category cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.category-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
  background: white;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }

/* Style categories */
.zodiac-card  { background: var(--zodiac-bg); }
.rap-card     { background: var(--rap-bg); }
.beauty-card  { background: var(--beauty-bg); }
.anime-card   { background: var(--anime-bg); }

.category-header {
  padding: 32px 32px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.category-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.zodiac-card  .category-icon { background: rgba(201,165,255,0.15); }
.rap-card     .category-icon { background: rgba(245,224,110,0.12); }
.beauty-card  .category-icon { background: rgba(212,137,155,0.2); }
.anime-card   .category-icon { background: rgba(126,200,227,0.15); }

.category-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
}
.zodiac-card  .category-tag { color: var(--zodiac-fg); }
.rap-card     .category-tag { color: var(--rap-fg); }
.beauty-card  .category-tag { color: var(--beauty-fg); }
.anime-card   .category-tag { color: var(--anime-fg); }

.category-title-group { padding: 16px 32px 0; }
.category-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.zodiac-card  .category-name { color: var(--zodiac-fg); }
.rap-card     .category-name { color: var(--rap-fg); }
.beauty-card  .category-name { color: var(--beauty-fg); }
.anime-card   .category-name { color: var(--anime-fg); }

.category-desc {
  font-size: 0.88rem;
  opacity: 0.7;
  margin-top: 4px;
}
.zodiac-card  .category-desc { color: var(--zodiac-fg); }
.rap-card     .category-desc { color: var(--rap-fg); }
.beauty-card  .category-desc { color: var(--beauty-fg); }
.anime-card   .category-desc { color: var(--anime-fg); }

/* Cover grid inside card */
.cover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px 32px 32px;
}
.cover-thumb {
  aspect-ratio: 2/3;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.cover-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.cover-thumb:hover img { transform: scale(1.06); }
.cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
  display: flex;
  align-items: flex-end;
  padding: 10px 8px;
}
.cover-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  line-height: 1.3;
}

/* ── Social proof strip ── */
.social-proof {
  background: var(--charcoal);
  padding: 64px 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.proof-stat {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.proof-stat:last-child { border-right: none; }
.proof-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--rose);
  line-height: 1;
}
.proof-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  font-weight: 500;
}

/* ── Recent work strip ── */
.recent-work {
  background: var(--cream-dark);
  padding: 80px 0;
}
.recent-work .section-label { color: var(--mid); }
.recent-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
}
.recent-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: 0;
}
.recent-link {
  font-size: 0.85rem;
  color: var(--rose);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.recent-link:hover { border-color: var(--rose); }
.recent-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.recent-thumb {
  aspect-ratio: 2/3;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.recent-thumb:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.recent-thumb:hover img { transform: scale(1.06); }
.recent-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,26,46,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 10px 10px;
}
.recent-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: white;
  line-height: 1.3;
}

/* ── Testimonials ── */
.testimonials {
  background: var(--cream);
  padding: 80px 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.testimonial-card::before {
  content: '\u201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--rose-light);
  position: absolute;
  top: 20px;
  left: 28px;
  line-height: 1;
}
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--zodiac-bg), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-info { display: flex; flex-direction: column; gap: 2px; }
.testimonial-name { font-size: 0.88rem; font-weight: 600; color: var(--charcoal); }
.testimonial-role { font-size: 0.75rem; color: var(--mid); }
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.star { color: #FFD700; font-size: 0.85rem; }

/* ── About strip ── */
.about-strip {
  background: var(--charcoal);
  padding: 80px 0;
  text-align: center;
}
.about-strip h2 {
  color: white;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}
.about-strip p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 54ch;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.about-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--rose);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ── Contact section ── */
.contact-section {
  padding: 100px 0;
  background: var(--cream-dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-copy h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.contact-copy p { color: var(--mid); line-height: 1.65; margin-bottom: 28px; }
.contact-channels { display: flex; flex-direction: column; gap: 14px; }
.channel-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  font-weight: 500;
  color: var(--charcoal);
  transition: transform 0.2s, box-shadow 0.2s;
}
.channel-link:hover { transform: translateX(4px); box-shadow: var(--shadow-card); }
.channel-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.channel-icon--email  { background: var(--rose-light); }
.channel-icon--social { background: var(--zodiac-bg); color: white; }
.channel-icon--order  { background: var(--beauty-bg); }

/* Contact form — Netlify Forms */
.contact-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.contact-form-wrap h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--charcoal);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(229,77,133,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--rose);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-submit:hover { background: var(--rose-dark); transform: translateY(-1px); }
.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--mid);
  margin-top: 12px;
}

/* ── Footer ── */
.site-footer {
  background: var(--charcoal);
  padding: 40px 0;
  text-align: center;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
}
.footer-wordmark span { color: var(--rose); }
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.92);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: pointer;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 1.4rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .category-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cover-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .site-nav { gap: 20px; }
  .hero { padding: 80px 0 64px; }
  .about-stats { gap: 28px; }
  .footer-inner { flex-direction: column; gap: 16px; }
  .cover-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Subtle animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease-out forwards; }
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-3 { animation-delay: 0.3s; opacity: 0; }

/* ── Divider ── */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--rose-dark));
  border-radius: 3px;
  margin: 16px auto;
}
.divider--left { margin: 16px 0; }

/* ── Quote form enhancements ── */
.quote-social-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--mid);
  margin: 20px 0 24px;
  background: var(--cream-dark);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--rose);
}
.quote-social-proof svg { color: var(--rose); flex-shrink: 0; }

/* Budget radio cards */
.budget-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.budget-option {
  position: relative;
  cursor: pointer;
}
.budget-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.budget-label {
  display: flex;
  flex-direction: column;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.budget-option input[type="radio"]:checked + .budget-label {
  border-color: var(--rose);
  background: var(--rose-light);
}
.budget-option:hover .budget-label { border-color: var(--rose-dark); }
.budget-name { font-weight: 600; font-size: 0.88rem; color: var(--charcoal); }
.budget-price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--rose-dark); margin: 2px 0; }
.budget-desc { font-size: 0.75rem; color: var(--mid); }

/* Deadline quick-pick */
.deadline-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.deadline-btn {
  padding: 6px 14px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  font-size: 0.82rem;
  font-family: var(--font-body);
  color: var(--charcoal);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.deadline-btn:hover, .deadline-btn.active {
  border-color: var(--rose);
  background: var(--rose-light);
  color: var(--rose-dark);
}

/* Optional badge */
.optional-badge {
  font-size: 0.72rem;
  color: var(--mid);
  font-weight: 400;
  background: var(--cream-dark);
  padding: 1px 7px;
  border-radius: 100px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Error state */
.quote-error {
  background: #FFF0F0;
  border: 1px solid #FFCDD2;
  color: #C62828;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: 14px;
}

/* Success screen */
.quote-success {
  text-align: center;
  padding: 48px 24px;
}
.quote-success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: white;
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.quote-success h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.quote-success p {
  color: var(--mid);
  font-size: 1rem;
  max-width: 340px;
  margin: 0 auto 8px;
}

@media (max-width: 480px) {
  .budget-options { grid-template-columns: 1fr 1fr; }
  .deadline-quick { gap: 6px; }
}

/* ═══════════════════════════════════════════
   Templates / Starter Packs page
   ═══════════════════════════════════════════ */

/* ── Nav active state ── */
.site-nav a.nav-active {
  color: var(--rose);
  font-weight: 600;
}

/* ── Hero ── */
.tp-hero {
  padding: 88px 0 56px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--rose-light) 100%);
  text-align: center;
}
.tp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-dark);
  background: rgba(229,77,133,0.08);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.tp-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto 20px;
}
.tp-hero-sub {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Pack grid ── */
.tp-packs-section {
  padding: 72px 0 56px;
}
.tp-packs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ── Pack card ── */
.tp-pack-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tp-pack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 56px rgba(26,26,46,0.16);
}
.tp-pack-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.tp-pack-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.tp-pack-card:hover .tp-pack-img-wrap img {
  transform: scale(1.04);
}
.tp-pack-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(26,26,46,0.72);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 99px;
}
.tp-pack-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.tp-pack-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.tp-pack-style {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
}
.tp-pack-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--rose);
}
.tp-pack-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}
.tp-pack-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tp-pack-includes li {
  font-size: 0.84rem;
  color: var(--mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.tp-pack-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--rose);
  font-weight: 700;
  font-size: 0.8rem;
}
.tp-pack-cta {
  display: block;
  text-align: center;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  margin-top: auto;
  transition: background 0.18s ease, transform 0.12s ease;
}
.tp-pack-cta:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
}

/* Card accent colors */
.zodiac-pack .tp-pack-cta { background: var(--zodiac-bg); }
.zodiac-pack .tp-pack-cta:hover { background: #4A2A99; }
.rap-pack .tp-pack-cta { background: var(--rap-bg); }
.rap-pack .tp-pack-cta:hover { background: #333333; }
.beauty-pack .tp-pack-cta { background: var(--rose-dark); }
.beauty-pack .tp-pack-cta:hover { background: #9C2D50; }
.anime-pack .tp-pack-cta { background: var(--anime-bg); }
.anime-pack .tp-pack-cta:hover { background: #2E5080; }

/* ── Secondary CTA ── */
.tp-secondary-cta {
  text-align: center;
  margin-top: 52px;
  padding: 32px;
  border-top: 1px solid var(--border);
}
.tp-secondary-link {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 2px solid var(--rose);
  padding-bottom: 2px;
  transition: color 0.15s ease;
}
.tp-secondary-link:hover { color: var(--rose); }
.tp-secondary-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--mid);
  max-width: 100%;
}

/* ── How it works ── */
.tp-how-section {
  padding: 72px 0 96px;
  background: var(--cream-dark);
}
.tp-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}
.tp-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 16px;
}
.tp-step-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--rose-light);
  line-height: 1;
  margin-bottom: 12px;
}
.tp-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.tp-step p { font-size: 0.9rem; color: var(--mid); max-width: 240px; margin: 0 auto; }
.tp-step-arrow {
  font-size: 1.8rem;
  color: var(--border);
  padding-top: 28px;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .tp-packs-grid { grid-template-columns: repeat(2, 1fr); }
  .tp-steps { flex-wrap: wrap; }
  .tp-step-arrow { display: none; }
}
@media (max-width: 560px) {
  .tp-packs-grid { grid-template-columns: 1fr; }
  .tp-hero { padding: 64px 0 40px; }
}