/*
Theme Name:  Concept Change Publishing
Theme URI:   https://konzept.publishing
Author:      Stefan / Concept Change Publishing
Author URI:  https://konzept.publishing
Description: Das offizielle Theme für Concept Change Publishing – Bücher, Kurse und Transformation.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: concept-change
Tags:        publishing, books, courses, transformation, dark, elegant
*/

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;1,9..144,300;1,9..144,400&family=Outfit:wght@300;400;500&display=swap');

/* === CSS VARIABLES === */
:root {
  --ink:      #141210;
  --charcoal: #1e1b18;
  --ivory:    #f6f1ea;
  --warm:     #ede7dc;
  --amber:    #c97d2e;
  --amber-lt: #e8a95a;
  --sage:     #5a7060;
  --stone:    #8c7f72;
  --mist:     #d4cdc4;
  --paper:    #faf7f2;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.7;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: .025;
  pointer-events: none;
  z-index: 9999;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  line-height: 1.1;
}

h1 { font-size: clamp(2.8rem, 6vw, 6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p { font-size: .97rem; line-height: 1.8; color: var(--stone); }

/* === UTILITY === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }

.section-label {
  font-size: .7rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; width: 20px; height: 1px; background: var(--amber);
}

.section-h {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300; line-height: 1.1; color: var(--ink);
  margin-bottom: 20px;
}
.section-h em { font-style: italic; color: var(--amber); }

/* === BUTTONS === */
.btn-amber {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber); color: var(--paper);
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 16px 36px;
  transition: background .25s, transform .2s;
}
.btn-amber:hover { background: var(--amber-lt); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(246,241,234,.2); color: rgba(246,241,234,.7);
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 16px 36px;
  transition: border-color .25s, color .25s, transform .2s;
}
.btn-ghost:hover { border-color: var(--amber-lt); color: var(--amber-lt); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--mist); color: var(--stone);
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 14px 28px;
  transition: border-color .25s, color .25s;
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }

/* === NAVIGATION === */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  background: rgba(246,241,234,.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
#site-header.scrolled { border-color: var(--mist); }

.site-logo { display: flex; flex-direction: column; gap: 1px; }
.site-logo-name {
  font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 400;
  color: var(--ink);
}
.site-logo-sub {
  font-size: .62rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--amber);
}

#primary-menu {
  display: flex; align-items: center; gap: 36px;
}
#primary-menu li a {
  font-size: .77rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--stone); transition: color .2s;
}
#primary-menu li a:hover { color: var(--ink); }
#primary-menu .menu-cta a {
  background: var(--ink); color: var(--paper);
  padding: 10px 22px;
  transition: background .2s;
}
#primary-menu .menu-cta a:hover { background: var(--amber); color: var(--paper); }

.menu-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; color: var(--ink);
  font-size: 1.4rem;
}

/* === HERO === */
.hero-section {
  min-height: 100vh;
  background: var(--charcoal);
  display: flex; flex-direction: column;
  padding: 0 60px;
  position: relative; overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; top: -40%; right: -10%;
  width: 55%; height: 160%;
  background: linear-gradient(160deg, rgba(201,125,46,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-bg-word {
  position: absolute; font-family: 'Fraunces', serif;
  font-size: 28vw; font-weight: 300;
  color: rgba(255,255,255,.03);
  bottom: -4vw; right: -2vw;
  line-height: 1; user-select: none; pointer-events: none;
}

.hero-inner {
  display: flex; align-items: flex-end;
  padding-top: 140px; padding-bottom: 80px;
  gap: 80px; flex: 1;
}

.hero-text { flex: 1; position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .7rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 36px;
}
.hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--amber); }

.hero-headline {
  font-family: 'Fraunces', serif; font-weight: 300; line-height: .95;
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  color: var(--ivory); margin-bottom: 36px;
  animation: heroIn 1s ease both;
}
.hero-headline em { font-style: italic; color: var(--amber-lt); }
.hero-headline .pre-text {
  display: block; font-size: 55%; font-weight: 300;
  font-style: normal; font-family: 'Fraunces', serif;
  color: rgba(246,241,234,.5); margin-bottom: 4px;
}
.hero-sub {
  font-size: 1rem; color: rgba(246,241,234,.55);
  max-width: 420px; line-height: 1.75; margin-bottom: 52px;
  animation: heroIn 1s .15s ease both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: heroIn 1s .25s ease both;
}

/* Book Mockup */
.hero-book { flex-shrink: 0; position: relative; z-index: 2; animation: heroIn 1s .35s ease both; }
.book-3d { animation: bookFloat 7s ease-in-out infinite; }
.book-face {
  width: 220px; height: 310px;
  background: linear-gradient(150deg, #1a0f08 0%, #2e1a0e 40%, #1a0f08 100%);
  box-shadow: 24px 32px 60px rgba(0,0,0,.7), -2px 0 8px rgba(0,0,0,.4);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 36px 24px; text-align: center; position: relative; overflow: hidden;
}
.book-face::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 30%, rgba(201,125,46,.15), transparent 70%);
}
.book-face-glyph { font-size: 2.8rem; margin-bottom: 18px; position: relative; filter: drop-shadow(0 0 16px rgba(201,125,46,.5)); }
.book-face-title { font-family: 'Fraunces', serif; font-size: 1.35rem; font-weight: 300; line-height: 1.15; color: var(--ivory); position: relative; }
.book-face-line { width: 40px; height: 1px; background: var(--amber); margin: 14px auto; }
.book-face-sub { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--amber-lt); position: relative; }
.book-spine { position: absolute; left: -20px; top: 0; width: 20px; height: 310px; background: linear-gradient(to right, #0d0703, #1a0f08); }

.hero-stats {
  display: flex; gap: 48px; padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  position: relative; z-index: 2;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 300; color: var(--amber-lt); }
.hero-stat-label { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(246,241,234,.35); }

/* === MISSION === */
.mission-section {
  background: var(--ivory);
  padding: 120px 60px;
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 100px; align-items: center;
}
.mission-pillars { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.pillar { display: grid; grid-template-columns: 48px 1fr; gap: 20px; align-items: start; padding: 24px 0; border-bottom: 1px solid var(--mist); }
.pillar:last-child { border-bottom: none; }
.pillar-num { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 300; color: var(--mist); }
.pillar-title { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 400; color: var(--ink); margin-bottom: 6px; }
.pillar-text { font-size: .88rem; color: var(--stone); line-height: 1.7; }
.mission-quote {
  font-family: 'Fraunces', serif; font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic; font-weight: 300; color: var(--ink); line-height: 1.5;
  padding: 40px 0 40px 48px; border-left: 3px solid var(--amber);
}
.mission-quote cite { display: block; margin-top: 24px; font-family: 'Outfit', sans-serif; font-style: normal; font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--stone); }

/* === BOOKS GRID === */
.books-section { background: var(--paper); padding: 120px 60px; }
.books-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }

.books-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }

.book-card { display: flex; flex-direction: column; cursor: pointer; transition: transform .3s; }
.book-card:hover { transform: translateY(-8px); }

.book-card-cover {
  width: 100%; aspect-ratio: 2/3;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  padding: 28px 20px; text-align: center;
  position: relative; overflow: hidden; margin-bottom: 20px;
}
.cover-dark { background: linear-gradient(150deg, #1a0f08 0%, #2e1a0e 60%); box-shadow: 8px 16px 40px rgba(0,0,0,.25); }
.cover-green { background: linear-gradient(150deg, #1e2f22 0%, #2c4530 60%); box-shadow: 8px 16px 40px rgba(0,0,0,.25); }
.cover-placeholder { background: var(--warm); border: 1px solid var(--mist); }

.book-card-cover .glyph { font-size: 2.2rem; position: relative; z-index: 1; }
.cover-dark .glyph, .cover-green .glyph { filter: drop-shadow(0 0 12px rgba(201,125,46,.4)); }
.book-card-cover-title { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 300; line-height: 1.2; position: relative; z-index: 1; }
.cover-dark .book-card-cover-title, .cover-green .book-card-cover-title { color: var(--ivory); }
.cover-placeholder .book-card-cover-title { color: var(--mist); }

.badge-new { position: absolute; top: 14px; right: 14px; z-index: 2; background: var(--amber); color: var(--paper); font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; padding: 4px 10px; }
.badge-soon { position: absolute; top: 14px; right: 14px; z-index: 2; border: 1px solid var(--mist); color: var(--stone); font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; padding: 4px 10px; }

.book-card-meta { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.book-card-genre { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--amber); }
.book-card-title { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 400; color: var(--ink); line-height: 1.2; }
.book-card-author { font-size: .8rem; color: var(--stone); }
.book-card-price { margin-top: 12px; font-size: .85rem; font-weight: 500; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.price-formats { font-size: .72rem; color: var(--stone); font-weight: 300; }

.book-card-btn { display: block; text-align: center; margin-top: 14px; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; padding: 11px; transition: background .2s, color .2s; }
.btn-dark-card { background: var(--ink); color: var(--paper); }
.btn-dark-card:hover { background: var(--amber); color: var(--paper); }
.btn-green-card { background: #2c4530; color: var(--paper); }
.btn-green-card:hover { background: var(--sage); color: var(--paper); }
.btn-soon-card { border: 1px solid var(--mist); color: var(--stone); }
.btn-soon-card:hover { border-color: var(--amber); color: var(--amber); }

/* === FEATURED BOOK SPREAD === */
.feature-section {
  background: var(--charcoal); padding: 120px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
  position: relative; overflow: hidden;
}
.feature-section::before {
  content: ''; position: absolute; top: -20%; right: -5%;
  width: 50%; height: 140%;
  background: linear-gradient(160deg, rgba(201,125,46,.05) 0%, transparent 70%);
  pointer-events: none;
}
.feature-section .section-label { color: var(--amber-lt); }
.feature-section .section-label::before { background: var(--amber-lt); }
.feature-section .section-h { color: var(--ivory); }
.feature-section p { color: rgba(246,241,234,.6); }

.feature-body { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.feature-pull {
  font-family: 'Fraunces', serif; font-size: 1.4rem; font-style: italic;
  font-weight: 300; color: rgba(246,241,234,.85); line-height: 1.45;
  border-left: 2px solid var(--amber); padding: 12px 0 12px 24px;
}
.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.tag { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; border: 1px solid rgba(255,255,255,.12); color: rgba(246,241,234,.45); padding: 6px 14px; }

.buy-box { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); padding: 40px; margin-top: 40px; }
.buy-box-title { font-family: 'Fraunces', serif; font-size: 1rem; color: var(--ivory); font-weight: 400; margin-bottom: 20px; }
.buy-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.buy-option { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); transition: background .2s, border-color .2s; }
.buy-option:hover { background: rgba(201,125,46,.1); border-color: rgba(201,125,46,.3); }
.buy-option-left { display: flex; align-items: center; gap: 14px; }
.buy-option-icon { font-size: 1.3rem; }
.buy-option-name { font-size: .82rem; color: var(--ivory); font-weight: 400; }
.buy-option-desc { font-size: .72rem; color: var(--stone); }
.buy-option-price { font-family: 'Fraunces', serif; font-size: 1.1rem; color: var(--amber-lt); }
.buy-amazon-btn { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--amber); color: var(--paper); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; padding: 16px; transition: background .25s; }
.buy-amazon-btn:hover { background: var(--amber-lt); }

.large-book { position: relative; animation: bookFloat 7s 1s ease-in-out infinite; }
.large-book-face { width: 300px; height: 420px; background: linear-gradient(150deg, #1c1007 0%, #341a0a 50%, #1c1007 100%); box-shadow: 32px 48px 80px rgba(0,0,0,.7); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px 32px; text-align: center; position: relative; overflow: hidden; }
.large-book-face::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 100% 70% at 50% 30%, rgba(201,125,46,.18), transparent 65%); }
.large-book-glyph { font-size: 3.5rem; position: relative; filter: drop-shadow(0 0 20px rgba(201,125,46,.6)); margin-bottom: 20px; }
.large-book-title { font-family: 'Fraunces', serif; font-size: 1.7rem; font-weight: 300; color: var(--ivory); line-height: 1.1; position: relative; }
.large-book-divider { width: 50px; height: 1px; background: var(--amber); margin: 18px auto; position: relative; }
.large-book-sub { font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--amber-lt); position: relative; }
.large-book-author { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(246,241,234,.3); }
.large-book-spine { position: absolute; left: -24px; top: 0; width: 24px; height: 420px; background: linear-gradient(to right, #0a0603, #1c1007); box-shadow: -4px 20px 40px rgba(0,0,0,.5); }

/* === COURSES === */
.courses-section { background: var(--warm); padding: 120px 60px; }
.courses-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.course-card { background: var(--paper); border: 1px solid var(--mist); display: flex; flex-direction: column; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.course-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,.1); }
.course-card-header { padding: 48px 32px 32px; display: flex; flex-direction: column; gap: 16px; position: relative; }
.course-header-dark { background: var(--charcoal); }
.course-header-warm1 { background: #eae4da; }
.course-header-warm2 { background: #dce4dc; }
.course-icon { font-size: 2.4rem; }
.course-badge { position: absolute; top: 20px; right: 20px; font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; padding: 5px 12px; }
.badge-available { background: var(--amber); color: var(--paper); }
.badge-coming { border: 1px solid var(--mist); color: var(--stone); }
.course-title { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 400; line-height: 1.2; }
.course-header-dark .course-title { color: var(--ivory); }
.course-header-warm1 .course-title, .course-header-warm2 .course-title { color: var(--stone); }
.course-body { padding: 28px 32px; flex: 1; }
.course-desc { font-size: .88rem; color: var(--stone); line-height: 1.75; margin-bottom: 24px; }
.course-modules { display: flex; flex-direction: column; gap: 8px; }
.course-module { display: flex; align-items: center; gap: 10px; font-size: .8rem; color: var(--stone); }
.course-module::before { content: '→'; color: var(--amber); font-size: .75rem; flex-shrink: 0; }
.course-footer { padding: 20px 32px; border-top: 1px solid var(--mist); display: flex; align-items: center; justify-content: space-between; }
.course-price { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 300; }
.course-price-active { color: var(--amber-lt); }
.course-price-soon { color: var(--mist); }
.course-btn { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; padding: 10px 20px; transition: background .2s, color .2s, border-color .2s; }
.course-btn-available { background: var(--amber); color: var(--paper); }
.course-btn-available:hover { background: var(--amber-lt); }
.course-btn-soon { border: 1px solid var(--mist); color: var(--stone); }
.course-btn-soon:hover { border-color: var(--amber); color: var(--amber); }

/* === NEWSLETTER === */
.newsletter-section {
  background: var(--ink); padding: 100px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.newsletter-section .section-h { color: var(--ivory); }
.newsletter-section p { color: rgba(246,241,234,.45); }

.nl-form { display: flex; flex-direction: column; gap: 16px; }
.nl-field { display: flex; flex-direction: column; gap: 8px; }
.nl-label { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(246,241,234,.4); }
.nl-input { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: var(--ivory); font-family: 'Outfit', sans-serif; font-size: .9rem; padding: 14px 18px; outline: none; transition: border-color .2s; width: 100%; }
.nl-input:focus { border-color: var(--amber); }
.nl-input::placeholder { color: rgba(246,241,234,.2); }
.nl-submit { background: var(--amber); color: var(--paper); border: none; cursor: pointer; font-family: 'Outfit', sans-serif; font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; padding: 16px; transition: background .25s; }
.nl-submit:hover { background: var(--amber-lt); }
.nl-note { font-size: .72rem; color: rgba(246,241,234,.25); line-height: 1.6; }

/* === FOOTER === */
#site-footer { background: var(--charcoal); padding: 64px 60px 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 32px; }
.footer-logo-area { display: flex; flex-direction: column; gap: 16px; }
.footer-logo-name { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 300; color: var(--ivory); }
.footer-logo-sub { font-family: 'Outfit', sans-serif; font-size: .62rem; letter-spacing: .25em; text-transform: uppercase; color: var(--amber); margin-top: 2px; display: block; }
.footer-tagline { font-size: .85rem; color: rgba(246,241,234,.35); line-height: 1.7; max-width: 280px; }
.footer-col-title { font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: .82rem; color: rgba(246,241,234,.4); transition: color .2s; }
.footer-links a:hover { color: var(--ivory); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: .72rem; color: rgba(246,241,234,.2); }
.footer-legal { display: flex; gap: 28px; }
.footer-legal a { font-size: .72rem; color: rgba(246,241,234,.2); transition: color .2s; letter-spacing: .05em; }
.footer-legal a:hover { color: rgba(246,241,234,.5); }

/* === WORDPRESS CONTENT STYLES === */
.entry-content h2 { font-family: 'Fraunces', serif; font-size: 2rem; color: var(--ink); margin: 40px 0 20px; }
.entry-content h3 { font-family: 'Fraunces', serif; font-size: 1.4rem; color: var(--ink); margin: 32px 0 16px; }
.entry-content p { margin-bottom: 20px; color: var(--stone); }
.entry-content a { color: var(--amber); border-bottom: 1px solid rgba(201,125,46,.3); transition: border-color .2s; }
.entry-content a:hover { border-color: var(--amber); }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 20px; color: var(--stone); }
.entry-content blockquote { border-left: 3px solid var(--amber); padding: 16px 0 16px 24px; font-family: 'Fraunces', serif; font-style: italic; font-size: 1.2rem; color: var(--ink); margin: 32px 0; }

/* Single Post / Page */
.page-hero { background: var(--charcoal); padding: 140px 60px 80px; }
.page-hero h1 { color: var(--ivory); }
.page-content { max-width: 740px; margin: 0 auto; padding: 80px 60px; }

/* === ANIMATIONS === */
@keyframes heroIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bookFloat { 0%, 100% { transform: translateY(0) rotate(-.5deg); } 50% { transform: translateY(-14px) rotate(.5deg); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s ease, transform .85s ease; }
.reveal.up { opacity: 1; transform: none; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .books-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  #site-header { padding: 0 28px; }
  #primary-menu { display: none; }
  #primary-menu.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--ivory); padding: 32px 28px; border-bottom: 1px solid var(--mist); z-index: 499; }
  .menu-toggle { display: block; }
  .hero-section, .mission-section, .books-section, .feature-section, .courses-section, .newsletter-section { padding: 72px 28px; }
  .hero-inner { flex-direction: column-reverse; padding-top: 110px; gap: 40px; }
  .mission-section, .feature-section, .newsletter-section { grid-template-columns: 1fr; gap: 48px; }
  .books-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .courses-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  #site-footer { padding: 48px 28px 28px; }
  .courses-header, .books-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}
@media (max-width: 520px) {
  .books-grid { grid-template-columns: 1fr; }
}
