﻿:root {
  --bg: #fff7d6;
  --bg2: #fff1c2;
  --ink: #1c2a4a;
  --muted: #4b5f86;
  --accent: #2f4e7a;
  --accent-dark: #233c61;
  --mint: #b9d9f6;
  --sky: #d9e7ff;
  --card: #ffffff;
  --shadow: 0 20px 50px rgba(45, 29, 26, 0.12);
}
@font-face {
  font-family: "Sweet Dreams";
  src: url("Font/EmilysCandy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 0%, #fff2c6 0%, transparent 45%),
    radial-gradient(circle at 90% 10%, #fff7dc 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    radial-gradient(rgba(210, 230, 255, 0.6) 1px, transparent 1px);
  background-size: 90px 90px, 140px 140px;
  background-position: 10px 20px, 40px 60px;
  opacity: 0.5;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 110px 110px, rgba(47, 78, 122, 0.9) 0 80px, transparent 82px),
    radial-gradient(circle at 140px 90px, rgba(255, 241, 194, 1) 0 80px, transparent 82px);
  opacity: 0.9;
}
img {
  max-width: 100%;
  display: block;
}
h1, h2, h3 {
  font-family: "Sweet Dreams", "Literata", "Georgia", serif;
  letter-spacing: 0.3px;
}
h1 {
  font-size: clamp(2.08rem, 3.2vw, 3.2rem);
  margin: 0 0 1rem;
}
h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0 0 0.8rem;
}
h3 {
  margin: 1rem 0 0.4rem;
  font-size: 1.3rem;
}
p {
  line-height: 1.6;
  color: var(--muted);
}
.wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}
.bg-shapes .blob {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 40% 60% 50% 50% / 55% 40% 60% 45%;
  background: linear-gradient(145deg, rgba(255, 239, 200, 0.65), rgba(185, 217, 246, 0.6));
  filter: blur(2px);
  opacity: 0.6;
  z-index: 1;
  animation: float 12s ease-in-out infinite;
}
.bg-shapes {
  display: none;
}
.bg-shapes .b1 { top: -80px; left: -60px; }
.bg-shapes .b2 { top: 200px; right: -80px; animation-delay: 2s; }
.bg-shapes .b3 { bottom: -120px; left: 10%; animation-delay: 4s; }
@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(18px) scale(1.02); }
}
.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(255, 246, 220, 0.85);
  border-bottom: 1px solid rgba(28, 42, 74, 0.08);
  z-index: 10;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.logo-mark {
  width: 56px;
  height: 56px;
  display: block;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-heart {
  position: relative;
  width: 18px;
  height: 18px;
  background: #fff;
  border: none;
  box-sizing: border-box;
  transform: rotate(-45deg);
  border-radius: 4px;
  z-index: 1;
}
.logo-heart::before,
.logo-heart::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
}
.logo-heart::before {
  top: -9px;
  left: 0;
}
.logo-heart::after {
  top: 0;
  left: 9px;
}
.logo-text strong {
  display: block;
  font-size: 1.1rem;
}
.logo-text small {
  color: var(--muted);
}
.logo-title {
  color: var(--accent-dark);
}
.nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  font-weight: 600;
}
.nav a {
  text-decoration: none;
  color: var(--accent-dark);
}
.hero {
  padding: 2.9rem 0 4rem;
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}
.series-title {
  font-family: "Sweet Dreams", "Literata", "Georgia", serif;
  font-size: clamp(1.82rem, 3.38vw, 2.86rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
  background: linear-gradient(90deg, #ff4d6d, #ff8c42, #ffd166, #8bd17c, #4dabf7, #9b5de5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.series-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: nowrap;
}
.series-marker {
  width: clamp(36px, 4.8vw, 56px);
  height: auto;
  margin-bottom: 0.2rem;
}
.lead {
  font-size: 1.1rem;
  max-width: 36rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.8rem 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: none;
  box-shadow: 0 12px 24px rgba(35, 60, 97, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(35, 60, 97, 0.3);
}
.btn-soft {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid rgba(35, 60, 97, 0.2);
  box-shadow: none;
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(45, 29, 26, 0.2);
  color: var(--ink);
  padding: 0.6rem 1.2rem;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.badges span {
  background: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  border: 1px dashed rgba(28, 42, 74, 0.2);
}
.hero-card {
  background: var(--card);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(-2deg);
  width: 80%;
  justify-self: center;
}
.hero-card.is-clickable {
  cursor: pointer;
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}
.hero-card-caption {
  padding: 1.2rem 1.5rem 1.6rem;
}
.hero-card-caption strong {
  display: block;
  margin-bottom: 0.3rem;
}
.release-tag {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 122, 92, 0.12);
  color: var(--accent-dark);
  font-weight: 700;
}
.hero-coming {
  display: inline-block;
  margin-top: 0.6rem;
  font-weight: 700;
  color: var(--accent);
}
.about {
  padding: 4rem 0;
}
.about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
}
.checklist li {
  padding-left: 2.2rem;
  position: relative;
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.checklist li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
}
.quote-card {
  background: var(--card);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
  font-style: italic;
}
.books {
  padding: 3rem 0 5rem;
}
.section-head {
  text-align: left;
  margin-bottom: 2rem;
}
.book-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.book-card {
  background: var(--card);
  border-radius: 22px;
  padding: 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  cursor: pointer;
}
.book-card:nth-child(1) { animation-delay: 0.1s; }
.book-card:nth-child(2) { animation-delay: 0.2s; }
.book-card:nth-child(3) { animation-delay: 0.3s; }
.book-card:nth-child(4) { animation-delay: 0.4s; }
.book-card:nth-child(5) { animation-delay: 0.5s; }
.book-card:nth-child(6) { animation-delay: 0.6s; }
.book-card:nth-child(7) { animation-delay: 0.7s; }
.book-card:nth-child(8) { animation-delay: 0.8s; }
.book-card:nth-child(9) { animation-delay: 0.9s; }
.book-card:nth-child(10) { animation-delay: 1s; }
.book-card:nth-child(11) { animation-delay: 1.1s; }
.book-card:nth-child(12) { animation-delay: 1.2s; }
.book-card:nth-child(13) { animation-delay: 1.3s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.book-card img {
  border-radius: 16px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.card-links,
.modal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}
.shop-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(45, 29, 26, 0.15);
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  font-size: 0.85rem;
}
.icon {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  display: inline-block;
}
.icon-print {
  background: var(--accent-dark);
}
.icon-kindle {
  background: var(--mint);
}
.icon-author {
  background: var(--accent-dark);
}
.book-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(45, 29, 26, 0.18);
}
.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 30;
}
.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 10, 0.55);
  backdrop-filter: blur(6px);
}
.modal-card {
  position: relative;
  background: var(--card);
  border-radius: 24px;
  width: min(860px, 92vw);
  max-height: 90vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(240px, 1.1fr);
  box-shadow: 0 30px 60px rgba(20, 12, 10, 0.25);
  z-index: 1;
  animation: fadeUp 0.25s ease;
}
.modal-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: #fff;
}
.modal-image {
  max-width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
}
.modal-body {
  padding: 2rem;
  overflow: auto;
  max-height: 90vh;
}
.modal-text {
  margin-top: 0.8rem;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1.6rem;
  cursor: pointer;
}
@media (max-width: 760px) {
  .modal-card {
    grid-template-columns: 1fr;
    max-height: 92vh;
  }
  .modal-image {
    max-height: 46vh;
  }
  .modal-body {
    max-height: 42vh;
    -webkit-overflow-scrolling: touch;
  }
}
.author {
  padding: 4rem 0;
}
.author-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(320px, 1.4fr) minmax(240px, 0.9fr);
  align-items: start;
}
.author-photo {
  width: 100%;
  border-radius: 28px;
  display: block;
  object-fit: contain;
  aspect-ratio: auto;
  max-height: 260px;
}
.author-card {
  background: var(--card);
  border-radius: 24px;
  padding: 2.4rem 2.6rem;
  box-shadow: var(--shadow);
}
.author-box {
  background: var(--card);
  border-radius: 22px;
  padding: 1rem;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: none;
  justify-self: stretch;
  display: grid;
  gap: 0.8rem;
}
.author-photo-wrap {
  display: flex;
  justify-content: center;
  padding: 1.2rem 1.6rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(47, 78, 122, 0.06), rgba(185, 217, 246, 0.18));
}
.author-box-text {
  padding: 0.9rem 0.8rem 0.7rem;
}
.author-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.author-tags span {
  background: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  border: 1px dashed rgba(45, 29, 26, 0.2);
}
.cta {
  padding: 4rem 0 5rem;
  background: linear-gradient(120deg, #fff3cf 0%, #e9f2ff 100%);
  border-top: 1px solid rgba(28, 42, 74, 0.06);
}
.cta-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}
.cta-box {
  background: var(--card);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.cta-label {
  font-weight: 700;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}
.cta-email {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
}
.cta-link {
  color: inherit;
  text-decoration: none;
}
.cta-link:hover {
  text-decoration: underline;
}
.cta-note {
  margin-bottom: 0;
}
.buy {
  padding: 4rem 0 5rem;
}
.buy-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.buy-card {
  background: var(--card);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.buy-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-dark);
  margin: 0.6rem 0 0.8rem;
}
.site-footer {
  padding: 2rem 0 3rem;
  text-align: center;
  color: var(--muted);
}
.imprint {
  padding: 4rem 0 5rem;
}
.imprint-card {
  background: var(--card);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: var(--shadow);
  max-width: 720px;
}
.imprint-card summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 800;
  color: var(--accent-dark);
}
.imprint-card summary::-webkit-details-marker {
  display: none;
}
.imprint-hint {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}
.imprint-content {
  margin-top: 1.2rem;
}
.imprint-label {
  margin-top: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.75rem;
}
.imprint-missing {
  color: var(--accent-dark);
  font-weight: 700;
}
.imprint-link {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 700;
}
.imprint-link:hover {
  text-decoration: underline;
}
@media (max-width: 760px) {
  .site-header .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    flex-wrap: nowrap;
    gap: 0.8rem;
    font-size: 0.95rem;
  }
  .nav a.btn-ghost {
    padding: 0.5rem 0.9rem;
  }
  .hero {
    padding: 3rem 0 2rem;
  }
  body::after {
    display: none;
  }
  .author-grid {
    grid-template-columns: 1fr;
  }
  .author-box {
    justify-self: stretch;
  }
}






