/* =============================================
   THE SNACK MONKEY — Site Stylesheet
   Dark, punchy, funny. Like the book.
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Permanent+Marker&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ---- CSS Variables ---- */
:root {
  --black: #0d0d0d;
  --dark: #1a1a1a;
  --card: #222222;
  --gold: #f5a623;
  --gold-dark: #c4821a;
  --gold-light: #ffc84a;
  --white: #f5f0e8;
  --off-white: #d9d3c7;
  --red: #e03b2f;
  --text: #c8c0b2;
  --radius: 4px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-hand: 'Permanent Marker', cursive;
  --font-body: 'DM Sans', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ---- Noise texture overlay ---- */
body::before {
  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='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,166,35,0.15);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,166,35,0.2);
  padding: 1.5rem 2rem 2rem;
  z-index: 890;
  flex-direction: column;
  gap: 1.2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--off-white);
}
.nav-mobile a:hover { color: var(--gold); }

/* =============================================
   PAGE WRAPPER
   ============================================= */
.page-wrapper {
  padding-top: 70px;
}

/* =============================================
   HERO — HOME
   ============================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 4rem 4rem 6rem;
  gap: 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,166,35,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(224,59,47,0.04) 0%, transparent 50%);
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  font-family: var(--font-hand);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  transform: rotate(-1deg);
  display: inline-block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.hero-title .gold { color: var(--gold); }

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--off-white);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-height: 80vh;
  width: auto;
  filter: drop-shadow(0 30px 60px rgba(245,166,35,0.2));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

/* =============================================
   SECTION STYLES
   ============================================= */
.section {
  padding: 6rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-full {
  padding: 6rem 0;
}

.section-label {
  font-family: var(--font-hand);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.section-body {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 640px;
  line-height: 1.8;
}

/* ---- Divider ---- */
.divider {
  border: none;
  border-top: 1px solid rgba(245,166,35,0.12);
  margin: 0;
}

/* =============================================
   QUOTE BANNER
   ============================================= */
.quote-banner {
  background: var(--dark);
  border-top: 1px solid rgba(245,166,35,0.1);
  border-bottom: 1px solid rgba(245,166,35,0.1);
  padding: 4rem 4rem;
  text-align: center;
}
.quote-banner blockquote {
  font-family: var(--font-hand);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--gold);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}
.quote-banner cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  color: var(--off-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =============================================
   MONKEY TRICKS — HOME SECTION
   ============================================= */
.tricks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.trick-card {
  background: var(--card);
  border: 1px solid rgba(245,166,35,0.08);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.trick-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.trick-card:hover { border-color: rgba(245,166,35,0.3); transform: translateY(-4px); }
.trick-card:hover::before { transform: scaleX(1); }
.trick-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(245,166,35,0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.trick-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}
.trick-card p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

/* =============================================
   ABOUT SECTION / MATT STRIP
   ============================================= */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}
.about-strip-image {
  background: var(--dark);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  min-height: 400px;
  position: relative;
}
.about-strip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.85;
}
.about-strip-content {
  background: var(--dark);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(245,166,35,0.1);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  background: var(--dark);
  padding: 6rem 4rem;
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  padding: 2rem;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.testimonial-author {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--dark);
  border-bottom: 1px solid rgba(245,166,35,0.1);
  padding: 5rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.15rem;
  color: var(--text);
  max-width: 560px;
  line-height: 1.7;
}

/* =============================================
   BOOK PAGE
   ============================================= */
.book-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: start;
  padding: 5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.book-cover-wrap {
  position: sticky;
  top: 100px;
}
.book-cover-wrap img {
  width: 320px;
  border-radius: 4px;
  filter: drop-shadow(0 20px 50px rgba(245,166,35,0.25));
}
.book-details h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.book-details .book-subtitle {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}
.book-details p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  max-width: 600px;
}
.book-details p strong {
  color: var(--white);
}

.chapters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.chapter-item {
  background: var(--card);
  border: 1px solid rgba(245,166,35,0.08);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.chapter-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem;
}
.chapter-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.4;
}

/* Characters section */
.characters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.character-card {
  background: var(--card);
  border: 1px solid rgba(245,166,35,0.1);
  border-radius: 4px;
  padding: 2.5rem;
  text-align: center;
}
.character-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.character-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}
.character-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

/* =============================================
   ABOUT / MATT PAGE
   ============================================= */
.matt-intro {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  padding: 5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.matt-image-wrap {
  position: sticky;
  top: 100px;
}
.matt-image-wrap img {
  width: 100%;
  border-radius: 4px;
  filter: grayscale(20%) contrast(1.1);
}
.matt-image-caption {
  font-family: var(--font-hand);
  font-size: 0.9rem;
  color: var(--gold);
  text-align: center;
  margin-top: 0.75rem;
  transform: rotate(-1deg);
  display: block;
}
.matt-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.matt-content .matt-tagline {
  font-family: var(--font-hand);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 2rem;
  transform: rotate(-0.5deg);
  display: inline-block;
}
.matt-content p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 1.3rem;
  max-width: 600px;
}
.matt-content p strong {
  color: var(--white);
}
.matt-content p em {
  color: var(--gold);
  font-style: normal;
}

.stats-row {
  display: flex;
  gap: 3rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-top: 0.25rem;
}

/* =============================================
   SPEAKING PAGE
   ============================================= */
.speaking-topics {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.topic-card {
  background: var(--card);
  border: 1px solid rgba(245,166,35,0.08);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.topic-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,166,35,0.3);
}
.topic-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}
.topic-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.topic-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
}
.topic-card ul {
  margin-top: 1rem;
}
.topic-card ul li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.topic-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.format-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
}
.format-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.format-card p {
  font-size: 0.9rem;
  color: var(--text);
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  padding: 5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.contact-info p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  max-width: 420px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--card);
  border-radius: 4px;
  border: 1px solid rgba(245,166,35,0.08);
}
.contact-item-icon { font-size: 1.5rem; }
.contact-item-text { font-size: 0.95rem; color: var(--off-white); }
.contact-item-text strong { color: var(--gold); display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }

.contact-form {}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--off-white);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select option { background: var(--dark); }
.form-note {
  font-size: 0.8rem;
  color: var(--text);
  margin-top: 0.75rem;
  font-style: italic;
}

/* =============================================
   BLOG
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--card);
  border: 1px solid rgba(245,166,35,0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,166,35,0.3);
}
.blog-card-image {
  background: var(--dark);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}
.blog-card-image .blog-emoji {
  font-size: 5rem;
  position: absolute;
}
.blog-card-body { padding: 1.75rem; }
.blog-card-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.blog-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 10px;
  background: rgba(245,166,35,0.12);
  color: var(--gold);
  border-radius: 2px;
}
.blog-date {
  font-size: 0.8rem;
  color: var(--text);
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.blog-card p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1.25rem;
}

/* Blog post page */
.blog-post-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem;
}
.blog-post-header {
  margin-bottom: 3rem;
}
.blog-post-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}
.blog-post-body h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.02em;
  margin: 2.5rem 0 1rem;
}
.blog-post-body p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 1.3rem;
}
.blog-post-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--card);
  font-family: var(--font-hand);
  font-size: 1.2rem;
  color: var(--gold);
  border-radius: 0 4px 4px 0;
}
.blog-post-body strong { color: var(--white); }
.blog-post-body em { color: var(--gold); font-style: normal; }

/* =============================================
   SOCIAL / FOOTER
   ============================================= */
.social-strip {
  background: var(--gold);
  padding: 2rem 4rem;
  text-align: center;
}
.social-strip h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--black);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--black);
  color: var(--white) !important;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.social-link:hover {
  background: var(--dark);
  transform: translateY(-2px);
  color: var(--gold) !important;
}

.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 4rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand {}
.footer-brand img { height: 50px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: var(--text); line-height: 1.65; max-width: 220px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--off-white);
  margin-bottom: 1rem;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text);
}
.footer-bottom a { color: var(--gold); font-size: 0.8rem; }

/* =============================================
   UTILITIES
   ============================================= */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.max-800 { max-width: 800px; margin-left: auto; margin-right: auto; }

.highlight-box {
  background: var(--card);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 4px;
  padding: 2rem;
  margin: 2rem 0;
}
.highlight-box p {
  font-size: 1rem;
  color: var(--off-white);
  line-height: 1.75;
}

/* Monkey image section */
.monkey-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.monkey-gallery-item {
  overflow: hidden;
  position: relative;
  height: 400px;
}
.monkey-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.monkey-gallery-item:hover img { transform: scale(1.04); }
.monkey-gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,13,13,0.9));
  padding: 2rem 1.5rem 1.5rem;
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--gold);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
    text-align: center;
    min-height: auto;
    padding-top: 6rem;
  }
  .hero-image { order: -1; }
  .hero-image img { max-height: 50vh; margin: 0 auto; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-buttons { justify-content: center; }

  .about-strip { grid-template-columns: 1fr; }
  .about-strip-image { min-height: 300px; }
  .about-strip-content { padding: 3rem 2rem; border-left: none; border-top: 1px solid rgba(245,166,35,0.1); }

  .book-hero { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 2rem; }
  .book-cover-wrap { position: static; }
  .book-cover-wrap img { width: 220px; margin: 0 auto; }

  .matt-intro { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 2rem; }
  .matt-image-wrap { position: static; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 2rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .section { padding: 4rem 2rem; }
  .page-hero { padding: 4rem 2rem 3rem; }
  .testimonials { padding: 4rem 2rem; }
  .quote-banner { padding: 3rem 2rem; }

  .monkey-gallery { grid-template-columns: 1fr; }
  .monkey-gallery-item { height: 300px; }

  .characters { grid-template-columns: 1fr; }
  .formats-grid { grid-template-columns: 1fr; }

  .social-strip { padding: 2rem; }
  .footer { padding: 3rem 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .blog-post-wrap { padding: 2rem; }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; gap: 1.5rem; }
}
