/* =============================================
   SUSAN B STRONG — Author Website
   Arts & Crafts Children's Theme
   ============================================= */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:wght@400;600;700;800&family=Caveat:wght@500;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Arts & Crafts Palette */
  --color-paper: #F9F6F0;
  /* Warm off-white background */
  --color-paper-dark: #F0EBE1;
  --color-terracotta: #E07A5F;
  /* Warm red/orange */
  --color-mustard: #F2CC8F;
  /* Yellow */
  --color-sage: #81B29A;
  /* Green */
  --color-teal: #3D5A80;
  /* Blue */
  --color-navy: #2B2D42;
  /* Dark text */

  --color-white: #FFFFFF;
  --color-text: #4A4A4A;
  --color-text-light: #7A7A7A;

  /* Typography */
  --font-heading: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --font-accent: 'Caveat', cursive;

  /* Font Sizes */
  --text-xs: 0.85rem;
  --text-sm: 1rem;
  --text-base: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.5rem;
  --text-4xl: 3.5rem;
  --text-5xl: 4.5rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  /* Handmade Borders */
  --border-drawn-1: 255px 15px 225px 15px/15px 225px 15px 255px;
  --border-drawn-2: 15px 225px 15px 255px/255px 15px 225px 15px;
  --border-drawn-3: 15px 255px 225px 15px/225px 15px 255px 15px;

  /* Physical Shadows (Offset style) */
  --shadow-solid-sm: 4px 4px 0px rgba(43, 45, 66, 0.1);
  --shadow-solid-md: 6px 6px 0px rgba(43, 45, 66, 1);
  --shadow-solid-teal: 6px 6px 0px var(--color-teal);
  --shadow-solid-terra: 6px 6px 0px var(--color-terracotta);
  --shadow-solid-mustard: 6px 6px 0px var(--color-mustard);

  /* Layout */
  --max-width: 1200px;

  /* Transitions */
  --transition-bounce: 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-fast: 200ms ease;

  --z-sticky: 100;
  --z-overlay: 200;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-paper);
  /* Subtle paper dot texture */
  background-image: radial-gradient(var(--color-paper-dark) 2px, transparent 2px);
  background-size: 30px 30px;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  line-height: 1.1;
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-padding {
  padding: var(--space-3xl) 0;
}

.section-heading {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
  transform: rotate(-1deg);
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: -5%;
  width: 110%;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,5 Q20,10 40,5 T80,5 T120,5 T160,5 T200,5' fill='none' stroke='%23F2CC8F' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  z-index: -1;
}

.section-heading--center {
  text-align: center;
}

.section-description {
  font-size: var(--text-lg);
  max-width: 600px;
  margin-bottom: var(--space-xl);
}

.section-description--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.subtitle {
  font-family: var(--font-accent);
  font-size: var(--text-2xl);
  color: var(--color-terracotta);
  transform: rotate(-3deg);
  display: inline-block;
  margin-bottom: var(--space-sm);
}

/* ---------- Buttons (Sticker Style) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.8em 1.8em;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  border: 3px solid var(--color-navy);
  border-radius: var(--border-drawn-1);
  background: var(--color-white);
  color: var(--color-navy);
  transition: transform var(--transition-bounce), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-solid-md);
}

.btn:hover {
  transform: translate(-2px, -2px) rotate(-1deg);
  box-shadow: 8px 8px 0px var(--color-navy);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--color-navy);
}

.btn--primary {
  background: var(--color-terracotta);
  color: var(--color-white);
}

.btn--secondary {
  background: var(--color-mustard);
}

.btn--pastel,
.btn--white,
.btn--dark {
  background: var(--color-teal);
  color: var(--color-white);
}

.btn--lg {
  padding: 1em 2.5em;
  font-size: var(--text-xl);
}

.btn--sm {
  padding: 0.5em 1.2em;
  font-size: var(--text-base);
}

/* ---------- Scrappy Tape Decor ---------- */
.tape {
  position: absolute;
  width: 100px;
  height: 25px;
  background-color: rgba(255, 255, 255, 0.4);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 10;
}

.tape--1 {
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
}

.tape--2 {
  top: 20px;
  right: -20px;
  transform: rotate(45deg);
  width: 80px;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.header {
  position: sticky;
  top: 0;
  background: var(--color-paper);
  background-image: radial-gradient(var(--color-paper-dark) 2px, transparent 2px);
  background-size: 30px 30px;
  border-bottom: 3px dashed var(--color-navy);
  padding: var(--space-sm) 0;
  z-index: var(--z-sticky);
  box-shadow: 0 4px 0 rgba(43, 45, 66, 0.05);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  gap: 5px;
}

.header__logo-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-mustard);
  color: var(--color-navy);
  border-radius: var(--border-drawn-2);
  border: 2px solid var(--color-navy);
  transform: rotate(-5deg);
}

.header__nav-list {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.header__nav-link {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-text);
  position: relative;
  padding: 5px 10px;
}

.header__nav-link:hover,
.header__nav-link--active {
  color: var(--color-navy);
}

.header__nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-mustard);
  border-radius: var(--border-drawn-1);
  z-index: -1;
  transform: scale(0) rotate(-5deg);
  transition: transform var(--transition-bounce);
}

.header__nav-link:hover::before,
.header__nav-link--active::before {
  transform: scale(1) rotate(-2deg);
}

.header__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--color-white);
  border: 2px solid var(--color-navy);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--color-navy);
  color: var(--color-navy);
  transition: transform var(--transition-bounce);
}

.header__cart:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--color-navy);
}

.header__cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--color-terracotta);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__mobile-toggle {
  display: none;
}

.mobile-nav {
  display: none;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  padding: var(--space-2xl) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;
}

/* Wavy SVG Divider Bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V120H0V95.8C59.71,118.08,130.83,111.47,189.92,94.27,235.1,81.16,278.48,70.52,321.39,56.44Z' fill='%23F0EBE1'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  color: var(--color-white);
  background: var(--color-teal);
  padding: 5px 20px;
  border: 2px solid var(--color-navy);
  border-radius: var(--border-drawn-2);
  transform: rotate(-3deg);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-solid-sm);
}

.hero__badge-dot {
  display: none;
}

.hero__title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-md);
  color: var(--color-navy);
}

.hero__title-accent {
  display: inline-block;
  position: relative;
  color: var(--color-white);
  -webkit-text-stroke: 1px var(--color-navy);
}

.hero__title-accent::before {
  content: '';
  position: absolute;
  inset: -5px -15px;
  background: var(--color-terracotta);
  border-radius: var(--border-drawn-1);
  z-index: -1;
  transform: rotate(2deg);
  border: 2px solid var(--color-navy);
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.hero__stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 3px dotted var(--color-sage);
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--color-teal);
}

.hero__stat-label {
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  color: var(--color-text);
}

.hero__visual {
  position: relative;
}

/* Crafty photo/book frame */
.hero__book-showcase {
  position: relative;
  padding: var(--space-xl);
  background: var(--color-mustard);
  border: 3px solid var(--color-navy);
  border-radius: var(--border-drawn-3);
  box-shadow: var(--shadow-solid-md);
  transform: rotate(2deg);
}

.hero__book-main {
  width: 100%;
  border: 3px solid var(--color-navy);
  background: var(--color-white);
  padding: 10px;
  transform: rotate(-4deg);
  transition: transform var(--transition-bounce);
}

.hero__book-main:hover {
  transform: rotate(0deg) scale(1.05);
}

.hero__book-float-1,
.hero__book-float-2,
.hero__glow {
  display: none;
  /* Simplify the hero for the crafty look */
}

/* Decorative Craft Elements */
.craft-star {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--color-mustard);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  border: 2px solid var(--color-navy);
}

.craft-star--1 {
  top: 10%;
  left: 45%;
  transform: rotate(15deg);
}

.craft-star--2 {
  bottom: 20%;
  right: -20px;
  background: var(--color-sage);
  transform: rotate(-10deg);
}

/* =============================================
   FEATURED BOOKS / SHOP
   ============================================= */
.featured-books {
  background: var(--color-paper-dark);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-3xl);
  position: relative;
}

.featured-books__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

/* Stitching top */
.featured-books::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 0;
  border-top: 4px dashed var(--color-terracotta);
  opacity: 0.5;
}

.featured-books__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.book-card {
  background: var(--color-white);
  border: 3px solid var(--color-navy);
  border-radius: var(--border-drawn-1);
  padding: var(--space-md);
  position: relative;
  transition: transform var(--transition-bounce);
  box-shadow: var(--shadow-solid-sm);
  display: flex;
  flex-direction: column;
}

.book-card:nth-child(even) {
  transform: translateY(10px) rotate(0.5deg);
  border-radius: var(--border-drawn-2);
}

.book-card:nth-child(odd) {
  transform: rotate(-0.5deg);
}

.book-card:hover {
  transform: translateY(-10px) rotate(0deg);
  box-shadow: var(--shadow-solid-teal);
  z-index: 2;
}

.book-card__image-wrapper {
  background: var(--color-paper);
  border: 2px solid var(--color-navy);
  padding: var(--space-sm);
  margin-bottom: var(--space-md);
  border-radius: var(--border-drawn-3);
  position: relative;
}

.book-card__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border: 1px solid rgba(43, 45, 66, 0.1);
}

.book-card__badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--color-mustard);
  color: var(--color-navy);
  font-family: var(--font-heading);
  padding: 5px 15px;
  border: 2px solid var(--color-navy);
  border-radius: 20px;
  transform: rotate(10deg);
  box-shadow: 2px 2px 0 var(--color-navy);
  z-index: 2;
}

.book-card__category {
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  color: var(--color-sage);
  margin-bottom: var(--space-xs);
}

.book-card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
  line-height: 1.25;
}

.book-card__excerpt {
  flex: 1;
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}

.book-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-sm);
  border-top: 2px dashed var(--color-paper-dark);
}

.book-card__price {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-terracotta);
}

.book-card__cta {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  padding: 5px 15px;
  background: var(--color-teal);
  color: var(--color-white);
  border: 2px solid var(--color-navy);
  border-radius: 15px;
  box-shadow: 2px 2px 0 var(--color-navy);
}

.book-card__cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--color-navy);
}

.book-card__cta svg {
  display: none;
}

.featured-books__view-all {
  text-align: center;
  margin-top: var(--space-2xl);
}


/* =============================================
   ABOUT SECTION (The Maker space)
   ============================================= */
.about {
  background: var(--color-sage);
  color: var(--color-white);
  position: relative;
  border-top: 4px solid var(--color-navy);
  border-bottom: 4px solid var(--color-navy);
}

.about .section-heading,
.about .subtitle {
  color: var(--color-white);
}

.about .section-description,
.about .about__text {
  color: var(--color-paper);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

/* Polaroid style photo */
.about__image-frame {
  background: var(--color-white);
  padding: 15px 15px 60px 15px;
  border: 3px solid var(--color-navy);
  box-shadow: var(--shadow-solid-md);
  position: relative;
  margin: 0 auto;
  max-width: 450px;
}

/* Tape on polaroid */
.about__image-frame::after {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  width: 120px;
  height: 35px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.about__image {
  border: 2px solid var(--color-navy);
  height: 450px;
  width: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.about__image-accent {
  display: none;
}

/* removed */

.about__quote {
  background: var(--color-terracotta);
  padding: var(--space-md);
  border: 3px solid var(--color-navy);
  border-radius: var(--border-drawn-2);
  transform: rotate(1deg);
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-solid-sm);
}

.about__quote p {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-white);
}

.about__signature-line {
  display: none;
}

.about__signature-name {
  font-family: var(--font-accent);
  font-size: var(--text-3xl);
  color: var(--color-mustard);
  transform: rotate(-5deg);
  display: inline-block;
}

.about .btn {
  color: var(--color-navy);
}

/* =============================================
   CATEGORIES / CREATIVE OFFERINGS
   ============================================= */
.categories {
  background: var(--color-paper);
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.category-card {
  background: var(--color-white);
  border: 4px solid var(--color-navy);
  padding: var(--space-2xl) var(--space-lg);
  border-radius: 50% 50% 50% 50% / 10% 10% 10% 10%;
  /* Paper bag shape */
  text-align: center;
  position: relative;
  transition: transform var(--transition-bounce);
  box-shadow: var(--shadow-solid-sm);
}

.category-card:nth-child(2) {
  transform: translateY(15px);
  background: var(--color-paper-dark);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-solid-mustard);
}

.category-card__icon {
  font-size: 3rem;
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background: var(--color-mustard);
  border: 3px solid var(--color-navy);
  border-radius: var(--border-drawn-1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 0 var(--color-navy);
  transform: rotate(-10deg);
}

.category-card:nth-child(2) .category-card__icon {
  background: var(--color-teal);
  transform: rotate(5deg);
}

.category-card:nth-child(3) .category-card__icon {
  background: var(--color-terracotta);
  transform: rotate(-5deg);
}

.category-card__count {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  background: var(--color-navy);
  color: var(--color-white);
  padding: 5px 15px;
  border-radius: 20px;
  transform: rotate(5deg);
}

/* =============================================
   TESTIMONIALS (Sticky notes)
   ============================================= */
.testimonials {
  background: var(--color-teal);
  border-top: 4px dashed var(--color-white);
  border-bottom: 4px solid var(--color-navy);
}

.testimonials .section-heading,
.testimonials .subtitle,
.testimonials .section-description {
  color: var(--color-white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  padding-top: var(--space-xl);
}

.testimonial-card {
  background: var(--color-mustard);
  padding: var(--space-xl);
  border: 2px solid var(--color-navy);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Push pin */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  background: var(--color-terracotta);
  border-radius: 50%;
  border: 2px solid var(--color-navy);
  box-shadow: inset -2px -2px 0 rgba(0, 0, 0, 0.2), 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.testimonial-card:nth-child(1) {
  transform: rotate(-3deg);
  background: #fdf2a6;
}

.testimonial-card:nth-child(2) {
  transform: rotate(2deg);
  background: #fce2ee;
}

.testimonial-card:nth-child(3) {
  transform: rotate(-1deg);
  background: #e0f2f1;
}

.testimonial-card__quote-mark {
  display: none;
}

.testimonial-card__text {
  font-family: var(--font-accent);
  font-size: var(--text-2xl);
  color: var(--color-navy);
  line-height: 1.4;
  margin-top: var(--space-md);
}

.testimonial-card__stars {
  color: var(--color-terracotta);
  font-size: 1.5rem;
}

.testimonial-card__author {
  margin-top: var(--space-md);
  border-top: 2px dashed rgba(43, 45, 66, 0.2);
  padding-top: var(--space-sm);
}

.testimonial-card__avatar {
  display: none;
}

/* remove avatar for sticky note look */

/* =============================================
   BLOG PREVIEW (Scrapbook)
   ============================================= */
.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.blog-card {
  background: var(--color-white);
  border: 3px solid var(--color-navy);
  padding: var(--space-sm);
  border-radius: var(--border-drawn-2);
  box-shadow: var(--shadow-solid-sm);
  transition: transform var(--transition-fast);
}

.blog-card:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: var(--shadow-solid-terra);
}

.blog-card__image-wrapper {
  border: 2px solid var(--color-navy);
  border-radius: var(--border-drawn-3);
  overflow: hidden;
  position: relative;
}

.blog-card__image {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.blog-card__date-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-terracotta);
  color: var(--color-white);
  border: 2px solid var(--color-navy);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  padding: 4px 10px;
  border-radius: 8px;
  transform: rotate(-3deg);
}

.blog-card__content {
  padding: var(--space-md) var(--space-xs) var(--space-xs);
}

.blog-card__tag {
  background: var(--color-mustard);
  color: var(--color-navy);
  padding: 3px 10px;
  border: 2px solid var(--color-navy);
  border-radius: 10px;
  font-family: var(--font-accent);
  font-size: var(--text-xl);
}

.blog-card__title {
  margin: var(--space-sm) 0;
}

.blog-card__read-more {
  font-family: var(--font-heading);
  background: var(--color-teal);
  color: var(--color-white);
  padding: 5px 15px;
  border-radius: 20px;
  border: 2px solid var(--color-navy);
}

.blog-card__read-more svg {
  display: none;
}

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter {
  background: var(--color-mustard);
  border-top: 4px solid var(--color-navy);
  text-align: center;
}

.newsletter__inner {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter__heading {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-sm);
}

.newsletter__description {
  color: var(--color-navy);
  margin-bottom: var(--space-lg);
}

.newsletter__form {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
}

.newsletter__input {
  border: 3px solid var(--color-navy);
  border-radius: var(--border-drawn-1);
  padding: 12px 20px;
  width: 100%;
  max-width: 350px;
  font-family: var(--font-heading);
  font-size: var(--text-base);
}

.newsletter__input:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--color-terracotta);
}

.newsletter__privacy {
  font-size: var(--text-xs);
  color: var(--color-text);
  margin-top: var(--space-md);
  opacity: 0.7;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--color-navy);
  color: var(--color-paper);
  padding-top: var(--space-3xl);
}

.footer__brand-description {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-top: var(--space-md);
  max-width: 280px;
  opacity: 0.7;
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition-bounce);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
  opacity: 0.7;
}

.footer__link:hover {
  opacity: 1;
}

.footer__bottom {
  padding: var(--space-lg) 0;
  margin-top: var(--space-2xl);
  border-top: 2px dashed rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  opacity: 0.6;
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-link {
  font-size: var(--text-xs);
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
}

.footer .header__logo-text {
  color: var(--color-white);
}

.footer .header__logo-accent {
  background: var(--color-terracotta);
  color: var(--color-white);
  border-color: var(--color-white);
}

.footer__column-title {
  color: var(--color-mustard);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
}

.footer__link:hover {
  color: var(--color-terracotta);
}

.footer__social-link {
  background: var(--color-white);
  color: var(--color-navy);
  border: 2px solid var(--color-white);
}

.footer__social-link:hover {
  background: var(--color-mustard);
  color: var(--color-navy);
  transform: rotate(15deg) scale(1.1);
}

/* =============================================
   ABOUT PAGE — Page Banner
   ============================================= */
.page-banner {
  background: var(--color-sage);
  padding: var(--space-2xl) 0 var(--space-3xl);
  position: relative;
  border-bottom: 4px solid var(--color-navy);
  overflow: hidden;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 Q150,60 300,30 T600,30 T900,30 T1200,30 L1200,60 L0,60 Z' fill='%23F9F6F0'/%3E%3C/svg%3E");
  background-size: cover;
}

.page-banner__subtitle {
  font-family: var(--font-accent);
  font-size: var(--text-2xl);
  color: var(--color-mustard);
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.page-banner__title {
  font-size: var(--text-4xl);
  color: var(--color-white);
}

/* =============================================
   ABOUT PAGE — Intro Section
   ============================================= */
.about-intro {
  padding: var(--space-3xl) 0;
}

.about-intro__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.about-photo-frame {
  background: var(--color-white);
  padding: 12px 12px 70px;
  border: 3px solid var(--color-navy);
  box-shadow: 8px 8px 0 var(--color-navy);
  transform: rotate(-2deg);
  position: relative;
}

.about-photo-frame::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%) rotate(3deg);
  width: 120px;
  height: 35px;
  background: rgba(255, 200, 100, 0.6);
}

.about-photo-frame img {
  width: 100%;
  border: 2px solid var(--color-navy);
  display: block;
}

.about-photo-caption {
  text-align: center;
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  color: var(--color-text-light);
  margin-top: var(--space-sm);
}

.about-intro__quote {
  background: var(--color-terracotta);
  color: var(--color-white);
  padding: var(--space-md) var(--space-lg);
  border: 3px solid var(--color-navy);
  border-radius: var(--border-drawn-2);
  transform: rotate(1deg);
  box-shadow: 4px 4px 0 var(--color-navy);
  margin-bottom: var(--space-xl);
}

.about-intro__quote p {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
}

.about-intro__text p {
  font-size: var(--text-base);
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

/* =============================================
   ABOUT PAGE — Stats Strip
   ============================================= */
.about-stats {
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--space-xl) 0;
  border-top: 4px solid var(--color-mustard);
  border-bottom: 4px solid var(--color-mustard);
}

.about-stats__grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--space-xl);
  text-align: center;
}

.about-stat__number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: var(--color-mustard);
  display: block;
}

.about-stat__label {
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.8);
}

/* =============================================
   ABOUT PAGE — Journey Timeline
   ============================================= */
.about-journey {
  padding: var(--space-3xl) 0;
  background: var(--color-paper-dark);
}

.timeline {
  margin-top: var(--space-2xl);
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: repeating-linear-gradient(180deg, var(--color-navy) 0, var(--color-navy) 8px, transparent 8px, transparent 16px);
}

.timeline-item {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  position: relative;
}

.timeline-dot {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--color-mustard);
  border: 3px solid var(--color-navy);
  border-radius: var(--border-drawn-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  color: var(--color-navy);
  font-weight: 700;
  z-index: 1;
}

.timeline-content {
  background: var(--color-white);
  border: 2px solid var(--color-navy);
  border-radius: var(--border-drawn-3);
  padding: var(--space-md);
  box-shadow: 3px 3px 0 var(--color-navy);
  flex: 1;
}

.timeline-content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.timeline-content p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.7;
}

/* =============================================
   ABOUT PAGE — Values
   ============================================= */
.about-values {
  padding: var(--space-3xl) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.value-card {
  background: var(--color-white);
  border: 3px solid var(--color-navy);
  border-radius: var(--border-drawn-1);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: 4px 4px 0 var(--color-navy);
  transition: transform var(--transition-bounce);
}

.value-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--color-teal);
}

.value-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.value-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.value-card p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.7;
}

/* =============================================
   ABOUT PAGE — CTA Strip
   ============================================= */
.about-cta {
  background: var(--color-teal);
  padding: var(--space-3xl) 0;
  text-align: center;
  border-top: 4px solid var(--color-navy);
}

.about-cta h2 {
  color: var(--color-white);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
}

.about-cta p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto var(--space-xl);
}

.about-cta .btn {
  margin: 0 var(--space-sm);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {

  .hero__inner,
  .about__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__book-showcase {
    max-width: 400px;
    margin: 0 auto;
  }

  .featured-books__grid,
  .categories__grid,
  .testimonials__grid,
  .blog-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .about-intro__inner {
    grid-template-columns: 1fr;
  }

  .about-photo-frame {
    max-width: 280px;
    margin: 0 auto;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .header__nav-list {
    display: none;
  }

  .header__mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
  }

  .header__mobile-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--color-navy);
    border-radius: 3px;
  }

  .featured-books__grid,
  .categories__grid,
  .testimonials__grid,
  .blog-preview__grid,
  .footer__main {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: var(--text-3xl);
  }

  .hero__stats {
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
  }

  .newsletter__form {
    flex-direction: column;
    align-items: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .book-card:nth-child(even) {
    transform: none;
  }

  .book-card:nth-child(odd) {
    transform: none;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .page-banner__title {
    font-size: var(--text-3xl);
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-dot {
    width: 44px;
    height: 44px;
    font-size: var(--text-xs);
  }
}