@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;1,6..12,300;1,6..12,400&display=swap');

:root {
  --cream:       #f8f3ec;
  --cream-deep:  #f0e8dc;
  --parchment:   #e8ddd0;
  --espresso:    #2c1810;
  --espresso-70: #2c1810b3;
  --espresso-40: #2c181066;
  --espresso-20: #2c181033;
  --espresso-10: #2c18101a;
  --sage:        #6b7c5e;
  --sage-light:  #8a9e7a;
  --sage-muted:  #6b7c5e33;
  --plum:        #4a2a5e;
  --plum-light:  #6b3f82;
  --plum-muted:  #4a2a5e18;
  --plum-rich:   #3d2050;
  --forest:      #1a3a2a;
  --forest-light:#264d38;
  --gold:        #c9a96e;
  --white:       #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito Sans', 'Segoe UI', sans-serif;
  --max-width:    1200px;
  --content-width: 760px;
  --nav-height:   80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--espresso); background: var(--cream); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }
p { max-width: 65ch; }

.label {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--plum);
}

@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes drawLine { from { transform:scaleX(0); } to { transform:scaleX(1); } }
.reveal { opacity:0; transform:translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: var(--nav-height);
  display: flex; align-items: center; transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled { background: rgba(248,243,236,0.95); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--espresso-10); }
.nav-inner { width:100%; max-width:var(--max-width); margin:0 auto; padding:0 2rem; display:flex; align-items:center; justify-content:space-between; }

.nav-logo { display:flex; align-items:center; gap:0.7rem; }
.nav-logo img { height: 44px; width: 44px; border-radius: 50%; }
.nav-logo-text { font-family:var(--font-display); font-size:1.4rem; font-weight:500; color:var(--espresso); letter-spacing:-0.02em; }
.nav-logo-text em { font-style:italic; color:var(--plum); }

.nav-links { display:flex; align-items:center; gap:2.5rem; list-style:none; }
.nav-links a {
  font-size:0.82rem; font-weight:500; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--espresso-70); transition:color 0.3s; position:relative;
}
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:1px; background:var(--plum); transition:width 0.3s; }
.nav-links a:hover, .nav-links a.active { color:var(--espresso); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }

/* Hamburger toggle */
.nav-toggle { display:none; flex-direction:column; gap:5px; padding:4px; cursor:pointer; }
.nav-toggle span { display:block; width:24px; height:2px; background:var(--espresso); transition:all 0.3s; }
.nav-close { display:none; }

.nav-overlay { display:none; }

@media(max-width:768px) {
  .nav-overlay { display:block; position:fixed; inset:0; background:rgba(0,0,0,0.35); z-index:150; opacity:0; pointer-events:none; transition:opacity 0.4s; }
  .nav-overlay.open { opacity:1; pointer-events:all; }
}

/* Mobile nav */
@media(max-width:768px) {
  .nav-toggle { display:flex; }
  .nav-links {
    position:fixed; top:0; right:-100%; width:75%; max-width:320px; height:auto;
    flex-direction:column; align-items:flex-start; gap:0;
    padding:5rem 2.5rem 2.5rem; background:var(--cream);
    box-shadow:-4px 0 30px rgba(0,0,0,0.08); transition:right 0.4s; z-index:200;
    border-bottom-left-radius:12px;
  }
  .nav-links.open { right:0; }
  .nav-links li { width:100%; }
  .nav-close { display:block; position:absolute; top:1rem; right:1.2rem; font-size:2.5rem; color:var(--espresso); cursor:pointer; background:none; border:none; padding:0.5rem; line-height:1; }
  .nav-links a { display:block; padding:1rem 0; font-size:0.95rem; border-bottom:1px solid var(--espresso-10); }
  .nav-links a::after { display:none; }

  /* Ticker — see end of file */

  /* Hero mobile */
  .hero { min-height:auto; padding:160px 1.5rem 3rem; }
  .hero h1 { font-size:2.2rem; }
  .hero-logo { width:60px; height:60px; }
  .hero-subtitle { font-size:1rem; }
  .hero-tagline { font-size:1rem; }

  /* Inner page heroes mobile */
  .about-hero, .books-hero, .blog-hero, .contact-hero { padding:200px 1.5rem 1rem; }
  .about-hero h1, .books-hero h1, .blog-hero h1, .contact-hero h1 { font-size:2rem; }

  /* Section padding mobile */
  .section { padding:2.5rem 1.5rem; }
  .section-header { margin-bottom:2.5rem; }
  h2 { font-size:1.8rem; }

  /* Book features mobile */
  .book-feature { padding:0 1.5rem; }
  .book-links { justify-content:center; }

  /* Authors mobile */
  .authors-grid { grid-template-columns:1fr; gap:2.5rem; }
  .author-photo { width:160px; height:160px; }

  /* Blog mobile */
  .blog-grid { grid-template-columns:1fr; gap:2.5rem; }

  /* Contact mobile */
  .contact-layout { grid-template-columns:1fr; gap:2.5rem; }
  .newsletter-form { flex-direction:column; }
  .newsletter-form input { min-width:100%; }

  /* Footer mobile */
  .footer { padding:3rem 1.5rem 2rem; }
  .footer-inner { flex-direction:column; gap:1.5rem; text-align:center; }
  .footer-links { flex-wrap:wrap; justify-content:center; }
}

/* HERO */
.hero {
  min-height:85vh; display:flex; align-items:center; justify-content:center;
  text-align:center; padding:170px 2rem 3rem; position:relative;
}
.hero-content { max-width:700px; }
.hero .label { margin-bottom:1.5rem; display:inline-block; }
.hero h1 { margin-bottom:1.5rem; font-weight:300; }
.hero h1 em { font-style:italic; font-weight:400; color:var(--plum); }
.hero-subtitle { font-size:1.1rem; color:var(--espresso-70); line-height:1.8; margin:0 auto 2.5rem; max-width:520px; }
.hero-line { width:60px; height:1px; background:var(--plum); margin:0 auto 2.5rem; }
.hero-cta {
  display:inline-flex; align-items:center; gap:0.5rem; font-size:0.8rem; font-weight:600;
  letter-spacing:0.15em; text-transform:uppercase; color:var(--plum); transition:color 0.3s, gap 0.3s;
}
.hero-cta:hover { color:var(--espresso); gap:0.8rem; }
.hero-cta svg { transition:transform 0.3s; }
.hero-cta:hover svg { transform:translateX(3px); }
.hero-scroll { position:absolute; bottom:2.5rem; left:50%; transform:translateX(-50%); animation:fadeIn 1s ease 1.5s both; }
.hero-scroll span { display:block; width:1px; height:40px; background:linear-gradient(to bottom, var(--plum), transparent); margin:0 auto; }

.hero-tagline {
  font-family:var(--font-display); font-style:italic; font-size:1.1rem;
  color:var(--plum); opacity:0.7; margin-bottom:2rem;
}

.hero-logo { width:80px; height:80px; border-radius:50%; margin:0 auto 2rem; }

/* SECTIONS */
.section { padding:5rem 2rem; }
.section-narrow { max-width:var(--content-width); margin:0 auto; }
.section-wide { max-width:var(--max-width); margin:0 auto; }
.section-header { margin-bottom:4rem; }
.section-header .label { margin-bottom:1rem; display:block; }
.section-header p { color:var(--espresso-70); font-size:1.05rem; margin-top:1rem; max-width:500px; }
.divider { width:40px; height:1px; background:var(--plum); margin:4rem auto; }
.section-alt { background:var(--forest); color:var(--cream); }
.section-alt .label { color:var(--gold); }
.section-alt h2 { color:var(--cream); }
.section-alt .intro-text p { color:rgba(248,243,236,0.75); }
.section-alt .hero-cta { color:var(--gold); }
.section-alt .hero-cta:hover { color:var(--cream); }
.section-alt .intro-image { background:transparent; }
.section-alt .intro-image::after { display:none; }

/* FOREST SECTION — dark accent sections */
.section-forest {
  background: var(--forest);
  color: var(--cream);
}
.section-forest .label { color: var(--gold); }
.section-forest h2 { color: var(--cream); }
.section-forest p { color: rgba(248,243,236,0.75); }
.section-forest .hero-cta { color: var(--gold); }
.section-forest .hero-cta:hover { color: var(--cream); }

/* INTRO GRID */
.intro-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.intro-text p { color:var(--espresso-70); font-size:1.05rem; margin-bottom:1.5rem; }
.intro-image { aspect-ratio:4/5; background:var(--parchment); border-radius:4px; position:relative; overflow:hidden; }
.intro-image::after { display:none; }
@media(max-width:768px) { .intro-grid { grid-template-columns:1fr; gap:2.5rem; } .intro-image { max-height:400px; } }

/* BOOKS */
.books-row { display:grid; grid-template-columns:repeat(3,1fr); gap:2.5rem; }
.book-card { text-align:center; transition:transform 0.4s; }
.book-card:hover { transform:translateY(-6px); }
.book-cover { border-radius:3px; margin-bottom:1.5rem; position:relative; overflow:hidden; box-shadow:4px 6px 20px rgba(44,24,16,0.1); transition:box-shadow 0.4s; }
.book-cover img { width:100%; height:auto; display:block; border-radius:3px; }
.book-card:hover .book-cover { box-shadow:6px 10px 30px rgba(44,24,16,0.15); }
.book-cover::after { display:none; }
.book-card h4 { font-family:var(--font-display); font-weight:500; margin-bottom:0.3rem; }
.book-card .book-genre { font-size:0.75rem; color:var(--espresso-40); letter-spacing:0.08em; text-transform:uppercase; }
@media(max-width:768px) { .books-row { grid-template-columns:1fr 1fr; gap:2rem; } }
@media(max-width:480px) { .books-row { grid-template-columns:1fr; max-width:280px; margin:0 auto; } }

/* MOTIVATIONAL TICKER */
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-strip {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 199;
  background: var(--forest);
  overflow: hidden;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(248,243,236,0.08);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 60s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  white-space: nowrap;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 1.5rem;
  color: #f8f3ec;
  letter-spacing: 0.03em;
}

.ticker-item::after {
  content: '\2022';
  color: var(--gold);
  font-style: normal;
  font-size: 0.8rem;
}

/* ABOUT */
.about-hero { padding:250px 2rem 5rem; text-align:center; }
.about-hero h1 { font-weight:300; margin-bottom:1rem; }
.about-hero p { color:var(--espresso-70); font-size:1.1rem; max-width:520px; margin:0 auto; }
.about-story { max-width:var(--content-width); margin:0 auto; padding:0 2rem 2rem; }
.about-story p { color:var(--espresso-70); font-size:1.05rem; margin-bottom:1.5rem; line-height:1.85; }
.about-story p:first-of-type::first-letter { font-family:var(--font-display); font-size:3.5rem; float:left; line-height:0.8; margin-right:0.1em; margin-top:0.1em; color:var(--plum); }

.authors-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:3rem; max-width:800px; margin:0 auto; }
.author-card { text-align:center; }
.author-photo { width:200px; height:200px; border-radius:50%; background:var(--parchment); margin:0 auto 1.5rem; position:relative; overflow:hidden; }
.author-photo::after { display:none; }
.author-card h3 { font-weight:500; margin-bottom:0.3rem; }
.author-card .author-role { font-size:0.75rem; color:var(--plum); letter-spacing:0.12em; text-transform:uppercase; margin-bottom:1rem; }
.author-card p { color:var(--espresso-70); font-size:0.95rem; max-width:320px; margin:0 auto; }
@media(max-width:600px) { .authors-grid { grid-template-columns:1fr; } }

/* BOOKS PAGE */
.books-hero { padding:250px 2rem 2rem; text-align:center; }
.books-hero h1 { font-weight:300; margin-bottom:1rem; }
.books-hero p { color:var(--espresso-70); font-size:1.1rem; max-width:520px; margin:0 auto; }
.book-feature { display:grid; grid-template-columns:300px 1fr; gap:4rem; align-items:start; max-width:var(--max-width); margin:0 auto; padding:0 2rem; }
.book-feature + .book-feature { margin-top:5rem; padding-top:5rem; border-top:1px solid var(--espresso-10); }
.book-feature-cover { border-radius:3px; box-shadow:6px 10px 30px rgba(44,24,16,0.12); position:relative; overflow:hidden; width:100%; }
.book-feature-cover img { width:100%; height:auto; display:block; border-radius:3px; }
.book-feature-cover::after { display:none; }
.book-feature-info h3 { font-weight:400; margin-bottom:0.5rem; }
.book-feature-info .book-meta { font-size:0.75rem; color:var(--espresso-40); letter-spacing:0.08em; text-transform:uppercase; margin-bottom:1.5rem; }
.book-feature-info .book-desc { color:var(--espresso-70); font-size:1rem; line-height:1.8; margin-bottom:2rem; }
.book-links { display:flex; flex-wrap:wrap; gap:0.75rem; }
.book-link { display:inline-flex; align-items:center; gap:0.4rem; padding:0.6rem 1.2rem; font-size:0.75rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; border:1px solid var(--espresso-20); border-radius:3px; transition:all 0.3s; }
.book-link:hover { background:var(--espresso); color:var(--cream); border-color:var(--espresso); }
.book-link-primary { background:var(--plum); color:var(--white); border-color:var(--plum); }
.book-link-primary:hover { background:var(--espresso); border-color:var(--espresso); }
@media(max-width:768px) { .book-feature { grid-template-columns:1fr; gap:2.5rem; } .book-feature-cover { max-width:240px; margin:0 auto; } }

/* BLOG */
.blog-hero { padding:250px 2rem 2rem; text-align:center; }
.blog-hero h1 { font-weight:300; margin-bottom:1rem; }
.blog-hero p { color:var(--espresso-70); font-size:1.1rem; max-width:520px; margin:0 auto; }
.blog-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:3rem; }
.blog-card { transition:transform 0.3s; }
.blog-card:hover { transform:translateY(-4px); }
.blog-card-image { aspect-ratio:16/10; background:var(--parchment); border-radius:3px; margin-bottom:1.2rem; position:relative; overflow:hidden; }
.blog-card-image::after { content:'Image'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-style:italic; color:var(--espresso-40); }
.blog-card .blog-date { font-size:0.7rem; color:var(--espresso-40); letter-spacing:0.1em; text-transform:uppercase; margin-bottom:0.5rem; }
.blog-card h3 { font-size:1.4rem; font-weight:400; margin-bottom:0.5rem; transition:color 0.3s; }
.blog-card:hover h3 { color:var(--plum); }
.blog-card p { color:var(--espresso-70); font-size:0.92rem; line-height:1.7; }
@media(max-width:600px) { .blog-grid { grid-template-columns:1fr; } }

/* CONTACT */
.contact-hero { padding:250px 2rem 2rem; text-align:center; }
.contact-hero h1 { font-weight:300; margin-bottom:1rem; }
.contact-hero p { color:var(--espresso-70); font-size:1.1rem; max-width:520px; margin:0 auto; }
.contact-layout { display:grid; grid-template-columns:1fr 1fr; gap:4rem; max-width:900px; margin:0 auto; }
.contact-form { display:flex; flex-direction:column; gap:1.2rem; }
.form-group label { display:block; font-size:0.7rem; font-weight:600; letter-spacing:0.15em; text-transform:uppercase; color:var(--espresso-70); margin-bottom:0.5rem; }
.form-group input, .form-group textarea { width:100%; padding:0.8rem 1rem; font-family:var(--font-body); font-size:0.95rem; color:var(--espresso); background:var(--white); border:1px solid var(--parchment); border-radius:3px; transition:border-color 0.3s, box-shadow 0.3s; outline:none; }
.form-group input:focus, .form-group textarea:focus { border-color:var(--plum); box-shadow:0 0 0 3px var(--plum-muted); }
.form-group textarea { resize:vertical; min-height:140px; }
.form-submit { align-self:flex-start; padding:0.8rem 2rem; font-size:0.75rem; font-weight:600; letter-spacing:0.15em; text-transform:uppercase; color:var(--white); background:var(--plum); border:none; border-radius:3px; transition:background 0.3s; }
.form-submit:hover { background:var(--espresso); }

.newsletter-box { background:var(--cream-deep); border-radius:4px; padding:2.5rem; text-align:center; height:fit-content; }
.newsletter-box h3 { font-weight:400; margin-bottom:0.8rem; }
.newsletter-box p { color:var(--espresso-70); font-size:0.92rem; margin:0 auto 1.5rem; }
.newsletter-form { display:flex; gap:0.5rem; flex-wrap:wrap; }
.newsletter-form input { flex:1; min-width:140px; padding:0.75rem 1rem; font-family:var(--font-body); font-size:0.9rem; color:var(--espresso); background:var(--white); border:1px solid var(--parchment); border-radius:3px; outline:none; transition:border-color 0.3s; }
.newsletter-form input:focus { border-color:var(--plum); }
.newsletter-form button { padding:0.75rem 1.5rem; font-size:0.7rem; font-weight:600; letter-spacing:0.15em; text-transform:uppercase; color:var(--white); background:var(--plum); border:none; border-radius:3px; white-space:nowrap; transition:background 0.3s; }
.newsletter-form button:hover { background:var(--espresso); }
@media(max-width:768px) { .contact-layout { grid-template-columns:1fr; gap:3rem; } .newsletter-form { flex-direction:column; } .newsletter-form input { min-width:100%; } }

/* NEWSLETTER STRIP — forest dark version */
.newsletter-strip {
  text-align:center; padding:5rem 2rem; background:var(--forest); color:var(--cream);
}
.newsletter-strip .label { color:var(--gold); }
.newsletter-strip h2 { color:var(--cream); font-weight:300; margin-bottom:0.8rem; }
.newsletter-strip p { color:rgba(248,243,236,0.7); margin:0 auto 2rem; max-width:460px; }
.newsletter-strip .newsletter-form { max-width:540px; margin:0 auto; }
.newsletter-strip .newsletter-form input { background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.15); color:var(--cream); }
.newsletter-strip .newsletter-form input::placeholder { color:rgba(248,243,236,0.4); }
.newsletter-strip .newsletter-form input:focus { border-color:var(--gold); }
.newsletter-strip .newsletter-form button { background:var(--gold); color:var(--forest); }
.newsletter-strip .newsletter-form button:hover { background:var(--cream); }

/* FOOTER */
.footer { padding:4rem 2rem 3rem; border-top:1px solid var(--espresso-10); }
.footer-inner { max-width:var(--max-width); margin:0 auto; display:flex; align-items:center; justify-content:space-between; }
.footer-logo { display:flex; align-items:center; gap:0.6rem; }
.footer-logo img { height:36px; width:36px; border-radius:50%; }
.footer-logo-text { font-family:var(--font-display); font-size:1.1rem; font-weight:500; }
.footer-logo-text em { font-style:italic; color:var(--plum); }
.footer-copy { font-size:0.78rem; color:var(--espresso-40); }
.footer-links { display:flex; gap:1.5rem; list-style:none; }
.footer-links a { font-size:0.78rem; color:var(--espresso-40); transition:color 0.3s; }
.footer-links a:hover { color:var(--espresso); }
@media(max-width:768px) { .footer-inner { flex-direction:column; gap:1.5rem; text-align:center; } }

.mt-1{margin-top:1rem} .mt-2{margin-top:2rem} .mb-1{margin-bottom:1rem} .mb-2{margin-bottom:2rem} .text-center{text-align:center}

/* Preview bar */

/* Page entrance animations */
/* Page entrance animations */
.anim { animation: fadeUp 0.7s ease both; }
.anim-d1 { animation-delay: 0.1s; }
.anim-d2 { animation-delay: 0.2s; }
.anim-d3 { animation-delay: 0.35s; }
.anim-d4 { animation-delay: 0.5s; }
.anim-d5 { animation-delay: 0.65s; }

/* Mobile ticker override — must be after desktop ticker styles */
@media(max-width:768px) {
  .ticker-item { font-size:1rem !important; padding:0 1.35rem !important; gap:1.35rem !important; }
  .ticker-strip { padding:0.65rem 0 !important; }
}

/* Tutorial page */
.tutorial-video {
  position:relative;
  width:100%;
  padding-bottom:56.25%;
  background:var(--parchment);
  border-radius:4px;
  margin:1.5rem 0;
  overflow:hidden;
}

.tutorial-video iframe,
.tutorial-video span {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  border:none;
  border-radius:4px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.tutorial-block {
  max-width:900px;
  margin:0 auto 4rem;
  padding:0 2rem;
  scroll-margin-top:180px;
}

.tutorial-block h3 {
  margin-bottom:0.5rem;
}

.tutorial-meta {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}

.tutorial-meta p {
  color:var(--espresso-70);
  font-size:0.9rem;
  margin:0;
}

.tutorial-download {
  display:inline-flex;
  align-items:center;
  gap:0.4rem;
  padding:0.5rem 1rem;
  font-size:0.72rem;
  font-weight:600;
  letter-spacing:0.1em;
  text-transform:uppercase;
  background:var(--plum);
  color:#fff;
  border:1px solid var(--plum);
  border-radius:3px;
  transition:all 0.3s;
  white-space:nowrap;
}

.tutorial-download:hover {
  background:var(--espresso);
  color:#fff;
  border-color:var(--espresso);
}

.tutorial-toc a:hover {
  color:var(--plum);
}

/* Tutorial mobile overrides */
@media(max-width:768px) {
  .tutorial-block {
    max-width:100%;
    padding:0 1rem;
    margin-bottom:3rem;
    scroll-margin-top:140px;
  }

  .tutorial-block h3 {
    font-size:1.2rem;
    margin-bottom:0.3rem;
  }

  .tutorial-video {
    margin:1rem -1rem;
    border-radius:0;
    width:calc(100% + 2rem);
  }

  .tutorial-meta {
    flex-direction:column;
    align-items:flex-start;
    gap:0.8rem;
    margin-top:0.8rem;
  }

  .tutorial-download {
    width:100%;
    justify-content:center;
    padding:0.7rem 1rem;
    font-size:0.8rem;
  }

  .tutorial-toc-wrap {
    padding:1.5rem !important;
  }

  .tutorial-toc-wrap h3 {
    font-size:1.1rem;
  }

  .tutorial-toc a {
    font-size:0.88rem;
    padding:0.5rem 0;
  }
}

/* Amazon-style review button */
.book-link-review {
  background: #FF9900;
  color: #111;
  border-color: #e8860c;
  font-weight: 700;
}
.book-link-review:hover {
  background: #e8860c;
  color: #111;
  border-color: #cc7400;
}

/* About page green highlight section */
.about-highlight {
  background: var(--forest);
  color: var(--cream);
  border-radius: 8px;
  padding: 2.5rem;
  margin: 2.5rem 0;
}
.about-highlight p {
  color: rgba(248,243,236,0.8);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.about-highlight p:last-child {
  margin-bottom: 0;
}
.about-highlight strong {
  color: #f8f3ec;
}

/* Blog card images with gradients */
.blog-card-image {
  position: relative;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}

/* 4 books row */
.books-row-4 { grid-template-columns: repeat(4, 1fr); }
.authors-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 960px; }
@media(max-width:768px) {
  .books-row-4 { grid-template-columns: 1fr 1fr; }
  .authors-grid-3 { grid-template-columns: 1fr; }
}
@media(max-width:480px) {
  .books-row-4 { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
}
