
/* --- 0. Fonts --- */

/* libre-baskerville-regular - latin */
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/libre-baskerville-v24-latin-regular.woff2') format('woff2');
}
/* libre-baskerville-italic - latin */
@font-face {
  font-family: 'Libre Baskerville';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/libre-baskerville-v24-latin-italic.woff2') format('woff2');
}
/* libre-baskerville-700 - latin */
@font-face {
  font-family: 'Libre Baskerville';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/libre-baskerville-v24-latin-700.woff2') format('woff2');
}

/* poppins-regular - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v24-latin-regular.woff2') format('woff2');
}
/* poppins-500 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/poppins-v24-latin-500.woff2') format('woff2');
}
/* poppins-600 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-v24-latin-600.woff2') format('woff2');
}
/* poppins-700 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poppins-v24-latin-700.woff2') format('woff2');
}
/* poppins-800 - latin */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/poppins-v24-latin-800.woff2') format('woff2');
}


/* --- 1. Variables & Base --- */
:root {
	/* Palette */
	--bg-gradient: linear-gradient(35deg, #FFF8ED 0%, #FFFAFA 100%);
	--text-color: #2B1149; 
	--text-muted: #6A5B85;
	--neon-pink: #F0008D; 
	--neon-cyan: #2BABE2; 
	
	/* Layout */
	--nav-height: 80px; 
	--nav-height-small: 55px; 
	--page-max-width: 1150px; 
	--hero-height: 125vh; 
	--footer-height: 350px; 
	
	--font-primary: 'Poppins', sans-serif;       
	--font-serif: 'Libre Baskerville', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
	font-family: var(--font-serif);
	background-image: var(--bg-gradient);
	background-attachment: fixed;
	color: var(--text-color);
	line-height: 1.7; 
	font-weight: 400; 
	overflow-x: hidden;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* Typography Inheritance & Defaults */
h1, h2, h3, h4, h5, h6, 
.logo, .cta-button, .nav-links a, cite, label, .part-label, .part-title, .footer-links a, .legal-row a {
	font-family: var(--font-primary);
	font-weight: 700;
}
h2, h3, .logo, .cta-button, .nav-links a, cite, label {
	font-weight: 700;
}
a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
ul { list-style: none; }

/* --- 2. Functional & Overlay --- */
body.modal-open { overflow: hidden; background-attachment: scroll !important; }
body.modal-open .noise-overlay { display: none !important; }

.noise-overlay {
	position: fixed; inset: 0; 
	pointer-events: none; z-index: 9999; opacity: 0.04; 
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1' fill='black'/%3E%3C/svg%3E");
	mix-blend-mode: multiply;
}

/* --- 3. Buttons --- */
.cta-button {
	background-color: var(--neon-pink); 
	color: #fff;
	text-transform: uppercase;
	font-size: 0.8rem; 
	padding: 0.8rem 2rem; 
	border-radius: 50px; 
	border: 2px solid var(--text-color); 
	box-shadow: 3px 3px 0px var(--text-color); 
	transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
	white-space: nowrap; letter-spacing: 1px;
	font-weight: 600;
	cursor: pointer;
	display: inline-block;
}

.cta-button:hover { 
	transform: translate(-2px, -2px); 
	box-shadow: 6px 6px 0px var(--neon-cyan); 
	background-color: var(--text-color);
}
.cta-button:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0px var(--text-color); }

/* Ghost variant for secondary actions (Download PDF etc) */
.cta-button.ghost {
	background: transparent;
	color: var(--text-color);
	box-shadow: none;
	border: 2px solid var(--text-color);
}
.cta-button.ghost:hover {
	background: var(--text-color);
	color: #fff;
	box-shadow: 3px 3px 0px var(--neon-pink);
	transform: translate(-2px, -2px);
}

.floating-wrapper {
	position: fixed; top: 90px; left: 50%; transform: translateX(-50%);
	width: 100%; max-width: var(--page-max-width); padding: 0 2rem; 
	z-index: 999; pointer-events: none; display: flex; justify-content: flex-end; 
}
.hero-btn { position: absolute; top: -20px; right: -20px; z-index: 10; opacity: 1; transition: opacity 0.3s; }
.hero-btn.hidden { opacity: 0; pointer-events: none; }
.floating-btn { pointer-events: none; opacity: 0; transform: translateY(20px); transition: all 0.5s ease; }
.floating-btn.active { pointer-events: auto; opacity: 1; transform: translateY(0); }

/* --- 4. Navigation --- */
header {
	position: fixed; top: 0; width: 100%; height: var(--nav-height);
	background: rgba(255, 248, 237, 0.7); backdrop-filter: blur(15px);
	border-bottom: 1px solid rgba(43, 17, 73, 0.05); z-index: 1000;
}
.header-inner {
	display: flex; justify-content: space-between; align-items: center;
	height: 100%; max-width: var(--page-max-width); margin: 0 auto; padding: 0 2rem;
}
.logo { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.5px; }

.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { 
	font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; 
	font-weight: 600; position: relative; 
}
.nav-links a::after {
	content: ''; position: absolute; bottom: -5px; left: 0; width: 0%; height: 3px; 
	background: var(--neon-pink); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.hamburger { display: none; cursor: pointer; font-size: 1.5rem; }

/* --- 5. Layout & Hero --- */
.page-content-wrapper {
	position: relative; z-index: 2; 
	background: linear-gradient(180deg, #FFF8ED 0%, #FAFAFA 20%);
	margin-bottom: var(--footer-height); 
	box-shadow: 0 20px 60px rgba(43, 17, 73, 0.1); 
	flex: 1; /* Pushes footer down */
	padding-top: calc(var(--nav-height) + 2rem);
}
.container { max-width: var(--page-max-width); margin: 0 auto; padding: 0 2rem; }

/* Section Title Helper */
.section-title {
	font-size: 2rem; color: var(--text-color); margin-bottom: 2rem; 
	line-height: 2.3rem;
	text-align: center; position: relative; display: inline-block; left: 50%; transform: translateX(-50%);
}
.section-title::after {
	content: ''; display: block; width: 60px; height: 3px; 
	background: var(--neon-pink); margin: 10px auto 0;
}

.hero-grid {
	display: grid; 
	grid-template-columns: 1fr 420px 1fr; 
	gap: 6rem;
	position: relative; 
	min-height: var(--hero-height); 
	height: auto;
	padding-bottom: 2rem;
	transition: gap 0.3s ease;
}
.quotes-column { 
	display: grid; 
	grid-template-rows: repeat(4, 1fr); 
	height: 100%; 
}
.center-column { height: 100%; position: relative; perspective: 1000px; padding-top: 3rem;}

.book-sticky-wrapper {
	position: sticky; top: calc(50vh - 330px);
	display: flex; flex-direction: column; align-items: center;
}
.book-caption {
	font-family: var(--font-primary);
	padding-bottom: 1.0rem; font-weight: 600; font-size: 1.5rem;
	text-transform: uppercase; letter-spacing: 2px; line-height: 1.8rem; text-align: center;
}
.book-cover {
	width: 100%; height: auto;
	filter: drop-shadow(0 25px 50px rgba(43, 17, 73, 0.2));
	transition: transform 0.5s ease-out, filter 0.5s ease;
	transform-style: preserve-3d;
}
.book-sticky-wrapper:hover .book-cover {
	transform: rotateY(-5deg) rotateX(2deg) scale(1.02);
	filter: drop-shadow(20px 40px 70px rgba(43, 17, 73, 0.3));
}
.book-cover-link { display: block; transform-style: preserve-3d; }
.book-sticky-wrapper:hover .hero-btn {
	transform: translate(-2px, -2px);
	background-color: var(--text-color); box-shadow: 6px 6px 0px var(--neon-cyan);
}
.book-cover-link:active .book-cover { transform: rotateY(-5deg) rotateX(2deg) scale(0.98) !important; transition: transform 0.1s; }

/* Quotes */
.quote {
	display: flex; flex-direction: column; justify-content: center; align-items: center; 
	text-align: center; position: relative; padding: 0 1rem; z-index: 1; 
	background: rgba(255, 255, 255, 0.3);
	border: 1px solid rgba(86, 34, 146, 0.05);
	border-radius: 8px;
	margin: 2rem 0;
}
.quote div { font-size: 1.0rem; font-style: italic; line-height: 1.5; font-weight: 500; }
.quote cite {
	display: flex; flex-direction: column; align-items: center;
	margin-top: 1.0rem; font-style: normal; font-size: 0.8rem; 
	letter-spacing: 1px; color: var(--neon-pink); text-transform: uppercase;
}
.quote cite span { margin-top: 0.25rem; font-size: 0.7rem; color: #807299; font-weight: 500; letter-spacing: 0.5px; }
.quote::before {
	content: "❞"; position: absolute; top: 50%; left: 50%;
	transform: translate(-50%, -30%); font-size: 15rem; line-height: 1; font-weight: 800;
	color: var(--neon-cyan); opacity: 0.10; z-index: -1; pointer-events: none; mix-blend-mode: multiply;
}

/* --- 6. Marketing Content --- */
.marketing-section { position: relative; padding: 2rem 0 8rem 0; }
.marketing-block { max-width: 680px; margin: 0 auto 7rem auto; }
.marketing-block h2 { font-size: 2.5rem; margin-bottom: 2rem; text-align: center; letter-spacing: -1px; }
.marketing-block p { margin-bottom: 1.3rem; font-size: 1.1rem; color: var(--text-color); }

/* Checklist */
.learn-checklist { margin-top: 3rem; }
.checklist-item { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; align-items: flex-start; }
.check-icon {
	flex-shrink: 0; width: 32px; height: 32px;
	background-color: var(--text-color); color: #fff;
	border-radius: 50%; display: flex; align-items: center; justify-content: center;
	font-size: 1rem; margin-top: 4px;
}
.checklist-content h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.3; }
.checklist-content p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; margin: 0; }

/* Accordion */
.accordion-wrapper { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
.accordion-item {
	background: #fff; border: 1px solid rgba(43, 17, 73, 0.15); border-radius: 8px;
	overflow: hidden; transition: all 0.3s ease; box-shadow: 0 4px 6px rgba(43, 17, 73, 0.02);
}
.accordion-item:hover { border-color: var(--neon-cyan); box-shadow: 0 6px 15px rgba(43, 17, 73, 0.08); }
.accordion-header { padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.header-title { display: flex; gap: 2rem; align-items: center; }
.part-label { font-weight: 800; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; min-width: 80px; }
.part-title { font-weight: 600; font-size: 1.1rem; }
.accordion-icon { font-weight: 800; font-size: 1.2rem; transition: transform 0.3s ease; }
.accordion-content {
	max-height: 0; opacity: 0; overflow: hidden;
	transition: max-height 0.4s ease-out, opacity 0.4s ease; background-color: #FAFAFA;
}
.accordion-content p { padding: 1rem 2rem 2rem calc(2rem + 80px + 2rem); font-size: 1rem; margin: 0; }
.accordion-item.active .accordion-icon { transform: rotate(45deg); color: var(--neon-pink); }
.accordion-item.active .accordion-content { opacity: 1; }

/* Author Bio */
.author-bio {
	display: block; 
	margin-top: 3rem;
	background: #fff;
	border-radius: 12px;
	padding: 3.5rem;
	box-shadow: 0 15px 30px rgba(43, 17, 73, 0.1), 0 5px 0 rgba(43, 17, 73, 0.05);
	border-top: 4px solid var(--neon-pink);
	overflow: hidden;
}
.author-img {
	float: left;
	width: 230px; height: 230px; object-fit: cover;
	shape-outside: circle(50%); border-radius: 50%;
	margin-right: 3rem; margin-bottom: 1rem;
	border: 5px solid #fff; 
	box-shadow: 0 0 0 3px var(--text-color), 10px 10px 0 rgba(43, 171, 226, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* --- 7. Footer --- */
footer {
	position: fixed; bottom: 0; left: 0; width: 100%; height: var(--footer-height);
	z-index: 1; background-color: var(--text-color); color: #fff;
	display: flex; align-items: center; justify-content: center; text-align: center;
}
.footer-content h3 { font-size: 2.5rem; margin-bottom: 0rem; color: var(--neon-cyan); }
.footer-content p { font-family: var(--font-primary); color: #D1C4E9; margin-bottom: 2.0rem; font-weight: 300; }
.footer-links { margin-top: 2rem; }
.footer-links a { 
	margin: 0 1.5rem; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; 
	font-weight: 600; opacity: 0.8; border-bottom: 1px solid var(--neon-pink); 
}
.footer-links a:hover { opacity: 1; }
.legal-row { margin-top: 2.5rem; font-size: 0.65rem; opacity: 0.5; transition: opacity 0.3s ease; }
.legal-row:hover { opacity: 1; }
.legal-row a { margin: 0 0.5rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.legal-row a:hover { text-decoration: none; color: var(--neon-cyan); }
.legal-row .separator { color: var(--neon-pink); }

/* --- 8. Modal & Forms --- */
.modal-overlay {
	position: fixed; inset: 0; background: rgba(43, 17, 73, 0.6); backdrop-filter: blur(8px);
	z-index: 10000; display: flex; justify-content: center; align-items: center;
	opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
	transform: translateZ(0);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-container {
	background: #FFF; width: 90%; max-width: 600px; max-height: 90vh; overflow-y: auto;
	border-radius: 12px; padding: 3rem; position: relative;
	box-shadow: 0 25px 50px rgba(0,0,0,0.25);
	transform: translateY(20px); transition: transform 0.3s ease;
	border: 1px solid rgba(43, 17, 73, 0.1);
}
.modal-overlay.open .modal-container { transform: translateY(0); }

.modal-close {
	position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none;
	font-size: 2rem; color: var(--text-color); cursor: pointer; line-height: 1;
	transition: color 0.2s;
}
.modal-close:hover { color: var(--neon-pink); }

.contact-header h2 { font-size: 2rem; color: var(--text-color); margin-bottom: 0.5rem; }
.contact-header p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 2rem; }

.form-group { margin-bottom: 1.5rem; }
.form-group label {
	display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-color);
	margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px;
}
.form-group input, .form-group select, .form-group textarea {
	width: 100%; padding: 0.8rem 1rem;
	border: 2px solid rgba(43, 17, 73, 0.1); border-radius: 6px; 
	font-family: inherit; font-size: 1rem; color: var(--text-color); background: #FAFAFA;
	transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
	outline: none; border-color: var(--neon-pink);
	box-shadow: 0 0 0 4px rgba(240, 0, 141, 0.1); background: #FFF;
}
.form-group textarea { resize: vertical; }
.hp { opacity: 0; position: absolute; top: 0; left: 0; height: 0; width: 0; z-index: -1; }
#form-messages { margin-bottom: 1rem; font-weight: 600; font-size: 0.9rem; }
.form-message-success { color: #27AE60; }
.form-message-error { color: #E74C3C; }

/* --- 9. Custom Scrollbars --- */
html { scrollbar-width: thin; scrollbar-color: rgba(43, 17, 73, 0.2) transparent; }
html::-webkit-scrollbar { width: 10px; }
html::-webkit-scrollbar-track { background: transparent; }
html::-webkit-scrollbar-thumb {
	background-color: rgba(43, 17, 73, 0.2); border-radius: 20px;
	border: 3px solid transparent; background-clip: content-box; transition: background-color 0.3s;
}
html::-webkit-scrollbar-thumb:hover { background-color: var(--neon-pink); }

.modal-container::-webkit-scrollbar { width: 6px; }
.modal-container::-webkit-scrollbar-thumb { border: 2px solid transparent; }

/* --- 10. Extensions (Resources, Speaking, Legal, Newsletter) --- */

/* Card Grid System (Used for Resources, Newsletter, Speaking Topics) */
.card-grid {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem;
	margin-bottom: 4rem;
}
.card {
	background: #fff; border-radius: 12px; overflow: hidden;
	box-shadow: 0 4px 6px rgba(43, 17, 73, 0.05); border: 1px solid rgba(43, 17, 73, 0.1);
	transition: all 0.3s ease; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(43, 17, 73, 0.15); border-color: var(--neon-cyan); }



/* 1. Ensure the anchor tag behaves like a structural block, not a text link */
a.card {
    display: flex; /* Ensures the 'horizontal' layout works */
    text-decoration: none; /* Redundant fallback for the inline style */
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* 2. Visual feedback when hovering over the card */
a.card:hover {
    transform: translateY(-3px); /* Subtle lift effect */
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); /* Slightly stronger shadow */
}

/* 3. Optional: Make the "Continue reading" text underline when hovering the card */
a.card:hover .card-content span:last-of-type {
    text-decoration: underline;
}

/* Style for the text link at the bottom of cards (matches Newsletter look) */
.card-link {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--neon-pink);
    font-size: 0.9rem;
    margin-top: auto; /* Pushes link to the bottom of the card */
    display: block;
}

/* Ensure the hover effect works on this new class */
a.card:hover .card-link {
    text-decoration: underline;
}

.card-image {
	width: 100%; height: 200px; object-fit: cover; background-color: #eee;
	border-bottom: 1px solid rgba(43, 17, 73, 0.05);
}
/* Newsletter specific card tweaks to match horizontal layout */
.card.horizontal { flex-direction: row; min-height: 220px; }
.card.horizontal .card-image { width: 35%; height: auto; border-bottom: none; border-left: 1px solid rgba(43, 17, 73, 0.05); order: 2; }
.card.horizontal .card-content { width: 65%; order: 1; display: flex; flex-direction: column; justify-content: center; }

.card-content { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-content h3 { font-size: 1.2rem; margin-bottom: 0.5rem; line-height: 1.3; }
.card-content p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; }
.card-meta { font-size: 0.8rem; color: #999; margin-bottom: 0.5rem; font-weight: 600; text-transform: uppercase; 
             letter-spacing: 1px; font-family: var(--font-primary);}

/* Speaking Hero (Background Image Rotator) */
.speaking-hero-container {
	position: relative; height: 60vh; min-height: 500px; width: 100vw; 
	margin-left: calc(-50vw + 50%); overflow: hidden;
	display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
	margin-bottom: 3rem; margin-top: -2rem; /* Pull up to nav */
}
.hero-backgrounds, .hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg {
	background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease-in-out;
	filter: brightness(0.6); /* Darken for text readability */
}
.hero-bg.active { opacity: 1; }

.hero-rotator { position: relative; z-index: 2; text-align: center; color: #fff; padding: 0 1rem; max-width: 800px; }
.hero-quote { display: none; animation: fadeIn 0.5s ease; }
.hero-quote.active { display: block; }
.hero-quote h1 { font-size: 3rem; margin-bottom: 1rem; text-shadow: 0 2px 4px rgba(0,0,0,0.5); line-height: 1.1; }
.hero-quote p { font-size: 1.3rem; font-weight: 300; text-shadow: 0 1px 2px rgba(0,0,0,0.5); font-family: var(--font-primary); line-height: 1.5rem; }

.rotator-dots { display: flex; gap: 10px; margin-top: 1.5rem; margin-bottom: 1.5rem; z-index: 2; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s; }
.dot.active { background: var(--neon-pink); transform: scale(1.2); }

/* Book Rotator (Resources Page) */
.resources-hero { text-align: center; margin-bottom: 4rem; overflow: hidden; position: relative; padding: 2rem 0; }
.book-image-rotator { width: 100%; max-width: 1000px; margin: 0 auto; overflow: hidden; /* Mask */ }
.book-image-slider { display: flex; transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); width: 100%; }
.book-slide { min-width: 33.333%; padding: 0 15px; box-sizing: border-box; /* Desktop default: 3 up */ }
.book-slide img { width: 100%; border-radius: 8px; box-shadow: 0 10px 20px rgba(43,17,73,0.15); }
.resources-hero .rotator-dots { justify-content: center; margin-bottom: 2rem; margin-top: 2rem;}
.resources-hero .dot { background: rgba(43,17,73,0.2); }
.resources-hero .dot.active { background: var(--neon-pink); }

/* Praise / Logos */
.praise-section { text-align: center; margin: 4rem auto; max-width: 800px; }
.praise-quote { font-size: 1.4rem; font-style: italic; margin-bottom: 2rem; color: var(--text-color); }
.logo-grid-container {
	display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin-top: 2rem;
}
.logo-grid-container img {
	height: auto; width: 160px; 
}

/* Legal & Content Pages */
.text-content-wrapper { max-width: 800px; margin: 0 auto; padding-bottom: 4rem; }
.text-content-wrapper h1 { font-size: 2.5rem; margin-bottom: 2rem; text-align: center; }
.text-content-wrapper h2 { margin-top: 2rem; margin-bottom: 1rem; font-size: 1.5rem; }
.text-content-wrapper p { margin-bottom: 1rem; }

.legal-container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.legal-column-left { border-right: 1px solid rgba(43,17,73,0.1); padding-right: 2rem; }

/* --- 11. Media Queries --- */
@media (max-width: 1200px) {
	.hero-grid { grid-template-columns: 1fr 34% 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
	header {
		height: var(--nav-height-small);
	}
	.hero-grid { 
		grid-template-columns: 1fr; display: flex; flex-direction: column; 
		padding-top: 0.8rem; height: auto; min-height: auto; gap: 1rem; 
	}
	.center-column { order: 1; height: auto; padding-top: 1.0rem;}
	.quotes-column { display: flex; flex-direction: column; height: auto; gap: 1rem; padding: 0; }
	.quotes-column:last-child { order: 2; }
	.quotes-column:first-child { order: 3; }
	
	.book-sticky-wrapper { position: static; display: block; margin: 0 auto 1rem auto; text-align: center; }
	.book-cover { max-width: 310px; margin: 0 auto; display: block; transform: none !important; }
	.quote { padding: 1rem 2.5rem; margin: 0;}
	.quote div { font-size: 1.2rem; }
	
	.floating-wrapper { top: auto; bottom: 2rem; padding: 0 2rem; }
	.hamburger { display: block; }
	.nav-links {
		position: absolute; top: var(--nav-height-small); left: 0; width: 100%;
		background: #FFF; flex-direction: column; align-items: center;
		padding: 2rem 0; transform: translateY(-150%); transition: transform 0.3s;
		box-shadow: 0 10px 20px rgba(0,0,0,0.05);
	}
	.nav-links.active { transform: translateY(0); }
	
	.hero-btn { right: 0px;}
	
	footer { position: relative; height: auto; padding: 6rem 1rem; }
	.page-content-wrapper { margin-bottom: 0; box-shadow: none; }
	.author-bio { flex-direction: column; align-items: center; text-align: center; padding: 2.5rem 1.5rem; }
	.author-img { float: none; margin-right: 0; margin-bottom: 2rem; shape-outside: none; }
	
	.marketing-block { padding-left: 1.5rem; padding-right: 1.5rem; }
	.accordion-header { padding: 1.2rem 1rem; }
	.marketing-block h2 { font-size: 2rem; }
	.mobile-hidden { display: none !important; }
	.accordion-content p { padding-left: 2rem; }
	.header-title { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
	
	/* Extension Responsive */
	.card.horizontal { flex-direction: column; }
	.card.horizontal .card-image { width: 100%; order: 1; height: 200px; border-left: none; border-bottom: 1px solid rgba(43,17,73,0.05); }
	.card.horizontal .card-content { width: 100%; order: 2; }
	.book-slide { min-width: 100%; } /* Mobile slider 1-up */
	.legal-container { grid-template-columns: 1fr; }
	.legal-column-left { border-right: none; border-bottom: 1px solid rgba(43,17,73,0.1); padding-right: 0; padding-bottom: 2rem; }
	.speaking-hero-container { height: 70vh; margin-top: -3.5rem; }
	.hero-quote h1 { font-size: 3rem; }
	
	.logo-grid-container img { height: auto; width: 120px; }
}

@media (max-width: 600px) {
	.modal-container { padding: 2rem 1.5rem; width: 95%; }
	.contact-header h2 { font-size: 1.5rem; }
	.book-slide { min-width: 100%; }
}
