/*
Theme Name: English Book Store
Theme URI: https://example.com/
Author: English Book
Description: A warm, conversion-focused WooCommerce theme for English-learning ebooks.
Version: 2.5.6
Requires at least: 6.6
Requires PHP: 8.0
Text Domain: english-book-store
*/

:root {
	--eb-sage: #6b7a67;
	--eb-sage-dark: #3f4c3d;
	--eb-terracotta: #c17761;
	--eb-terracotta-dark: #98543f;
	--eb-pale-sage: #b4c3b2;
	--eb-ivory: #f5f3ec;
	--eb-sand: #e2c8b1;
	--eb-ink: #273029;
	--eb-muted: #647066;
	--eb-white: #fffefa;
	--eb-border: rgba(107, 122, 103, 0.22);
	--eb-shadow: 0 24px 70px rgba(63, 76, 61, 0.14);
	--eb-shadow-small: 0 14px 34px rgba(63, 76, 61, 0.1);
	--eb-radius: 24px;
	--eb-width: 1180px;
	--eb-font: Poppins, sans-serif;
	--eb-heading: Merriweather, serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--eb-ink);
	background: var(--eb-ivory);
	font-family: var(--eb-font);
	font-size: 17px;
	line-height: 1.68;
}

a {
	color: var(--eb-terracotta-dark);
	text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
	color: var(--eb-sage-dark);
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input,
textarea,
select {
	font-family: var(--eb-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--eb-heading);
}

:focus-visible {
	outline: 3px solid var(--eb-terracotta);
	outline-offset: 4px;
}

.screen-reader-text,
.skip-link:not(:focus) {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 99999;
	padding: 10px 16px;
	color: var(--eb-ink);
	background: var(--eb-white);
	border-radius: 8px;
	box-shadow: var(--eb-shadow);
}

.eb-container {
	width: min(calc(100% - 44px), var(--eb-width));
	margin-inline: auto;
}

.eb-section {
	padding: 110px 0;
}

.eb-section--soft {
	background: #eeeee6;
}

.eb-section--sage {
	background: var(--eb-pale-sage);
}

.eb-section--sand {
	background: var(--eb-sand);
}

.eb-section--dark {
	color: var(--eb-ivory);
	background:
		radial-gradient(circle at 82% 30%, rgba(193, 119, 97, 0.24), transparent 28%),
		var(--eb-sage-dark);
}

.eb-section-heading {
	max-width: 760px;
	margin-bottom: 48px;
	text-align: center;
}

.eb-section-heading .eb-lead {
	margin-inline: auto;
}

.eb-eyebrow,
.eb-kicker {
	margin: 0 0 14px;
	color: var(--eb-terracotta-dark);
	font-size: 0.75rem;
	font-weight: 850;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.eb-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 13px;
	color: var(--eb-sage-dark);
	background: rgba(180, 195, 178, 0.42);
	border: 1px solid rgba(107, 122, 103, 0.18);
	border-radius: 999px;
	letter-spacing: 0.09em;
}

h1,
h2,
h3 {
	margin-top: 0;
	font-family: var(--eb-heading);
	font-weight: 600;
	line-height: 1.08;
	overflow-wrap: break-word;
	text-wrap: balance;
}

h1 {
	max-width: 730px;
	margin-bottom: 24px;
	font-size: clamp(3.2rem, 6.7vw, 6.8rem);
	letter-spacing: -0.068em;
}

h2 {
	margin-bottom: 20px;
	font-size: clamp(2.3rem, 4.5vw, 4.5rem);
	letter-spacing: -0.045em;
}

h3 {
	margin-bottom: 12px;
	font-size: 1.45rem;
	letter-spacing: -0.018em;
}

p {
	margin-top: 0;
}

.eb-lead {
	max-width: 710px;
	color: var(--eb-muted);
	font-size: clamp(1.08rem, 1.8vw, 1.28rem);
	line-height: 1.7;
}

.eb-notice {
	padding: 8px 20px;
	color: var(--eb-ivory);
	background: var(--eb-sage-dark);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.045em;
	line-height: 1.45;
	overflow-wrap: anywhere;
	text-align: center;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(245, 243, 236, 0.93);
	border-bottom: 1px solid var(--eb-border);
	backdrop-filter: blur(16px);
}

.site-header__inner {
	display: flex;
	min-height: 78px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--eb-sage-dark);
	font-family: var(--eb-heading);
	font-size: 1.4rem;
	font-weight: 700;
	text-decoration: none;
}

.site-branding__mark {
	display: grid;
	width: 43px;
	height: 43px;
	place-items: center;
	overflow: hidden;
	background: var(--eb-sand);
	border-radius: 50% 50% 50% 12px;
}

.site-branding__mark img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.site-nav ul {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-nav a {
	position: relative;
	color: var(--eb-sage-dark);
	font-size: 0.88rem;
	font-weight: 800;
	text-decoration: none;
}

.site-nav a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -7px;
	left: 0;
	height: 2px;
	background: var(--eb-terracotta);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav .current-menu-item a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.menu-toggle {
	display: none;
	padding: 8px 13px;
	color: var(--eb-sage-dark);
	background: var(--eb-white);
	border: 1px solid var(--eb-border);
	border-radius: 999px;
	cursor: pointer;
	font-weight: 800;
}

.eb-button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 13px 24px;
	color: var(--eb-white);
	background: var(--eb-terracotta);
	border: 2px solid var(--eb-terracotta);
	border-radius: 999px;
	box-shadow: 0 9px 20px rgba(193, 119, 97, 0.2);
	font-size: 0.9rem;
	font-weight: 850;
	text-decoration: none;
	transition: transform 180ms ease, background 180ms ease, border 180ms ease, box-shadow 180ms ease;
}

.eb-button:hover,
.eb-button:focus-visible,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
	color: var(--eb-white);
	background: var(--eb-terracotta-dark);
	border-color: var(--eb-terracotta-dark);
	box-shadow: 0 14px 30px rgba(152, 84, 63, 0.25);
	transform: translateY(-2px);
}

.eb-button--secondary {
	color: var(--eb-sage-dark);
	background: transparent;
	border-color: rgba(107, 122, 103, 0.36);
	box-shadow: none;
}

.eb-button--secondary:hover,
.eb-button--secondary:focus-visible {
	color: var(--eb-white);
	background: var(--eb-sage);
	border-color: var(--eb-sage);
}

.eb-button--light {
	color: var(--eb-sage-dark);
	background: var(--eb-ivory);
	border-color: var(--eb-ivory);
	box-shadow: none;
}

.eb-button--light:hover,
.eb-button--light:focus-visible {
	color: var(--eb-white);
	background: var(--eb-terracotta);
	border-color: var(--eb-terracotta);
}

.eb-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--eb-terracotta-dark);
	font-weight: 850;
	text-decoration: none;
}

.eb-text-link span {
	transition: transform 180ms ease;
}

.eb-text-link:hover span {
	transform: translateX(4px);
}

.eb-text-link--light {
	color: var(--eb-ivory);
	text-decoration: underline;
}

.eb-hero {
	position: relative;
	overflow: hidden;
	padding: 90px 0 100px;
	background:
		radial-gradient(circle at 5% 15%, rgba(226, 200, 177, 0.55), transparent 27%),
		linear-gradient(135deg, var(--eb-ivory), #eee9df);
}

.eb-hero::before,
.eb-hero::after {
	content: "";
	position: absolute;
	border: 1px solid rgba(107, 122, 103, 0.16);
	border-radius: 50%;
	pointer-events: none;
}

.eb-hero::before {
	top: -230px;
	left: -210px;
	width: 520px;
	height: 520px;
}

.eb-hero::after {
	right: -120px;
	bottom: -290px;
	width: 620px;
	height: 620px;
}

.eb-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.94fr) minmax(430px, 1.06fr);
	align-items: center;
	gap: 70px;
}

.eb-hero__grid > *,
.eb-story > *,
.eb-book-offer__grid > *,
.eb-final-cta > *,
.eb-lead-box > * {
	min-width: 0;
}

.eb-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 32px 0 27px;
}

.eb-proof-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	padding: 0;
	margin: 0;
	color: var(--eb-sage-dark);
	font-size: 0.83rem;
	font-weight: 750;
	list-style: none;
}

.eb-proof-list li::before {
	content: "✓";
	display: inline-grid;
	width: 20px;
	height: 20px;
	margin-right: 7px;
	place-items: center;
	color: var(--eb-white);
	background: var(--eb-sage);
	border-radius: 50%;
	font-size: 0.66rem;
	font-weight: 900;
}

.eb-hero__visual {
	position: relative;
	padding: 35px 0 35px 35px;
}

.eb-hero__image-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1.13;
	background: var(--eb-sand);
	border: 8px solid rgba(255, 254, 250, 0.78);
	border-radius: 46% 46% 22px 22px;
	box-shadow: var(--eb-shadow);
}

.eb-hero__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.eb-hero__image-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: inherit;
	pointer-events: none;
}

.eb-float-card {
	position: absolute;
	z-index: 2;
	display: flex;
	max-width: 230px;
	align-items: center;
	gap: 11px;
	padding: 12px 15px;
	color: var(--eb-sage-dark);
	background: rgba(255, 254, 250, 0.94);
	border: 1px solid rgba(107, 122, 103, 0.18);
	border-radius: 15px;
	box-shadow: var(--eb-shadow-small);
	font-size: 0.72rem;
	line-height: 1.25;
	backdrop-filter: blur(10px);
}

.eb-float-card strong,
.eb-float-card span {
	display: block;
}

.eb-float-card strong {
	margin-bottom: 3px;
	font-size: 0.82rem;
}

.eb-float-card__icon {
	display: grid !important;
	flex: 0 0 38px;
	height: 38px;
	place-items: center;
	color: var(--eb-white);
	background: var(--eb-terracotta);
	border-radius: 50%;
	font-weight: 900;
}

.eb-float-card--top {
	top: 12px;
	left: 0;
}

.eb-float-card--bottom {
	right: -12px;
	bottom: 13px;
}

.eb-benefit-strip {
	color: var(--eb-white);
	background: var(--eb-sage);
}

.eb-benefit-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.eb-benefit-strip__grid > div {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 0 12px;
	padding: 25px 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.eb-benefit-strip__grid > div:last-child {
	border-right: 0;
}

.eb-benefit-strip span {
	grid-row: 1 / 3;
	color: var(--eb-sand);
	font-family: var(--eb-heading);
	font-size: 1.35rem;
	font-style: italic;
}

.eb-benefit-strip strong,
.eb-benefit-strip small {
	display: block;
}

.eb-benefit-strip strong {
	font-size: 0.83rem;
}

.eb-benefit-strip small {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.68rem;
}

.eb-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.eb-card {
	position: relative;
	padding: 32px;
	background: var(--eb-white);
	border: 1px solid var(--eb-border);
	border-radius: var(--eb-radius);
	box-shadow: var(--eb-shadow-small);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.eb-card:hover {
	box-shadow: var(--eb-shadow);
	transform: translateY(-6px);
}

.eb-card p:last-child {
	margin-bottom: 0;
}

.eb-card--numbered {
	padding-top: 72px;
}

.eb-card__number {
	position: absolute;
	top: 25px;
	right: 27px;
	color: rgba(107, 122, 103, 0.28);
	font-family: var(--eb-heading);
	font-size: 1.3rem;
	font-style: italic;
}

.eb-card__icon {
	display: grid;
	width: 52px;
	height: 52px;
	margin-bottom: 22px;
	place-items: center;
	color: var(--eb-white);
	background: var(--eb-terracotta);
	border-radius: 50% 50% 50% 12px;
	font-family: var(--eb-heading);
	font-size: 1.15rem;
	font-weight: 800;
}

.eb-story {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	align-items: center;
	gap: 80px;
}

.eb-story__image {
	position: relative;
}

.eb-story__image img {
	aspect-ratio: 1.08;
	width: 100%;
	object-fit: cover;
	border: 8px solid rgba(245, 243, 236, 0.56);
	border-radius: 22px 48% 22px 22px;
	box-shadow: var(--eb-shadow);
}

.eb-story__note {
	position: absolute;
	right: -25px;
	bottom: 24px;
	max-width: 230px;
	padding: 16px 19px;
	color: var(--eb-white);
	background: var(--eb-terracotta);
	border-radius: 14px;
	box-shadow: var(--eb-shadow-small);
	font-family: var(--eb-heading);
	font-size: 1rem;
	font-style: italic;
}

.eb-story__content .eb-lead {
	color: var(--eb-sage-dark);
}

.eb-checklist {
	padding: 0;
	margin: 28px 0;
	list-style: none;
}

.eb-checklist li {
	position: relative;
	padding: 11px 0 11px 36px;
	border-bottom: 1px solid rgba(63, 76, 61, 0.18);
	font-size: 0.93rem;
	font-weight: 650;
}

.eb-checklist li::before {
	content: "✓";
	position: absolute;
	top: 11px;
	left: 0;
	display: grid;
	width: 21px;
	height: 21px;
	place-items: center;
	color: var(--eb-white);
	background: var(--eb-terracotta);
	border-radius: 50%;
	font-size: 0.68rem;
}

.eb-book-offer {
	overflow: hidden;
	background:
		radial-gradient(circle at 15% 80%, rgba(226, 200, 177, 0.5), transparent 25%),
		var(--eb-white);
}

.eb-book-offer__grid {
	display: grid;
	grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
	align-items: center;
	gap: 100px;
}

.eb-book-mockup {
	position: relative;
	width: min(100%, 390px);
	aspect-ratio: 0.72;
	margin-inline: auto;
	perspective: 1000px;
	transform: rotate(-3deg);
}

.eb-book-mockup::before {
	content: "";
	position: absolute;
	right: -30px;
	bottom: -32px;
	left: 20px;
	height: 52px;
	background: rgba(63, 76, 61, 0.18);
	border-radius: 50%;
	filter: blur(18px);
}

.eb-book-mockup__spine {
	position: absolute;
	z-index: 2;
	top: 0;
	bottom: 0;
	left: 0;
	width: 34px;
	background: var(--eb-sage-dark);
	border-radius: 8px 0 0 8px;
	transform: translateX(-14px);
}

.eb-book-mockup__cover {
	position: relative;
	z-index: 1;
	display: flex;
	height: 100%;
	flex-direction: column;
	justify-content: center;
	padding: 48px;
	color: var(--eb-ivory);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 42%),
		var(--eb-sage);
	border: 7px solid var(--eb-sage-dark);
	border-radius: 8px 20px 20px 8px;
	box-shadow: 26px 24px 0 var(--eb-sand), var(--eb-shadow);
}

.eb-book-mockup__cover::after {
	content: "";
	position: absolute;
	right: 35px;
	bottom: 38px;
	width: 84px;
	height: 7px;
	background: var(--eb-terracotta);
	border-radius: 999px;
}

.eb-book-mockup__cover span {
	color: var(--eb-sand);
	font-size: 0.67rem;
	font-weight: 850;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.eb-book-mockup__cover strong {
	margin: 30px 0 18px;
	font-family: var(--eb-heading);
	font-size: clamp(2.6rem, 5vw, 4.6rem);
	font-weight: 600;
	line-height: 0.92;
	letter-spacing: -0.06em;
}

.eb-book-mockup__cover em {
	font-size: 0.86rem;
}

.eb-book-mockup__cover i {
	position: absolute;
	top: 38px;
	right: 35px;
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	color: var(--eb-sage-dark);
	background: var(--eb-sand);
	border-radius: 50%;
	font-family: var(--eb-heading);
	font-style: normal;
	font-weight: 700;
}

.eb-offer-points {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin: 30px 0;
}

.eb-offer-points div {
	padding: 16px;
	background: var(--eb-ivory);
	border: 1px solid var(--eb-border);
	border-radius: 14px;
}

.eb-offer-points strong,
.eb-offer-points span {
	display: block;
}

.eb-offer-points strong {
	margin-bottom: 4px;
	color: var(--eb-terracotta-dark);
	font-family: var(--eb-heading);
	font-size: 1.15rem;
}

.eb-offer-points span {
	color: var(--eb-muted);
	font-size: 0.72rem;
}

.eb-offer__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.eb-offer__actions > span {
	color: var(--eb-muted);
	font-size: 0.74rem;
	font-weight: 700;
}

.eb-curriculum {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.eb-curriculum article {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 20px;
	padding: 28px;
	background: rgba(255, 254, 250, 0.68);
	border: 1px solid rgba(107, 122, 103, 0.18);
	border-radius: 20px;
}

.eb-curriculum article > span {
	color: var(--eb-terracotta-dark);
	font-family: var(--eb-heading);
	font-size: 1.6rem;
	font-style: italic;
}

.eb-curriculum p,
.eb-personas p {
	margin-bottom: 0;
	color: var(--eb-muted);
	font-size: 0.9rem;
}

.eb-personas {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 15px;
}

.eb-personas article {
	position: relative;
	min-height: 245px;
	padding: 30px 24px;
	background: var(--eb-white);
	border: 1px solid var(--eb-border);
	border-radius: 48% 48% 20px 20px;
	box-shadow: var(--eb-shadow-small);
	text-align: center;
}

.eb-personas article > span {
	display: grid;
	width: 52px;
	height: 52px;
	margin: 0 auto 25px;
	place-items: center;
	color: var(--eb-white);
	background: var(--eb-sage);
	border-radius: 50%;
	font-family: var(--eb-heading);
	font-style: italic;
}

.eb-personas article:nth-child(even) > span {
	background: var(--eb-terracotta);
}

.eb-final-cta {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	align-items: center;
	gap: 70px;
}

.eb-final-cta h2 {
	max-width: 750px;
}

.eb-final-cta p {
	max-width: 650px;
	color: rgba(245, 243, 236, 0.72);
}

.eb-final-cta .eb-eyebrow {
	color: var(--eb-sand);
}

.eb-final-cta__actions {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 16px;
}

.eb-faq {
	max-width: 850px;
}

.eb-faq details {
	padding: 24px 0;
	border-bottom: 1px solid var(--eb-border);
}

.eb-faq summary {
	position: relative;
	padding-right: 40px;
	cursor: pointer;
	font-family: var(--eb-heading);
	font-size: 1.32rem;
	font-weight: 700;
	list-style: none;
}

.eb-faq summary::-webkit-details-marker {
	display: none;
}

.eb-faq summary::after {
	content: "+";
	position: absolute;
	top: -2px;
	right: 0;
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	color: var(--eb-white);
	background: var(--eb-terracotta);
	border-radius: 50%;
	font-family: var(--eb-font);
	font-size: 1rem;
}

.eb-faq details[open] summary::after {
	content: "−";
}

.eb-faq p {
	max-width: 700px;
	padding-top: 12px;
	margin-bottom: 0;
	color: var(--eb-muted);
}

.eb-lead-box {
	display: grid;
	grid-template-columns: 1fr minmax(390px, 0.8fr);
	align-items: center;
	gap: 55px;
	padding: 55px;
	color: var(--eb-ivory);
	background:
		radial-gradient(circle at 90% 10%, rgba(226, 200, 177, 0.25), transparent 32%),
		var(--eb-sage);
	border-radius: 30px;
	box-shadow: var(--eb-shadow);
}

.eb-lead-box h2 {
	margin-bottom: 12px;
}

.eb-lead-box .eb-eyebrow {
	color: var(--eb-sand);
}

.eb-lead-box p {
	margin-bottom: 0;
	color: rgba(245, 243, 236, 0.78);
}

.eb-lead-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.eb-lead-form input[type="text"],
.eb-lead-form input[type="email"] {
	min-width: 0;
	padding: 13px 14px;
	color: var(--eb-ink);
	background: var(--eb-white);
	border: 1px solid rgba(255, 255, 255, 0.38);
	border-radius: 10px;
}

.eb-lead-form .eb-button {
	grid-column: 1 / -1;
}

.eb-form-note,
.eb-form-status {
	grid-column: 1 / -1;
	margin: 0;
	color: rgba(245, 243, 236, 0.8);
	font-size: 0.72rem;
}

.site-main--content {
	min-height: 60vh;
	padding: 80px 0;
}

.entry-content {
	max-width: 820px;
}

.page-id-3 .entry-content,
.page-id-14 .entry-content {
	max-width: 880px;
	color: var(--eb-sage-dark);
}

.page-id-3 .entry-content h1,
.page-id-14 .entry-content h1 {
	max-width: none;
	margin-bottom: 18px;
	color: var(--eb-sage-dark);
	font-size: clamp(2rem, 3.2vw, 2.85rem);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.16;
}

.page-id-3 .entry-content h2,
.page-id-14 .entry-content h2 {
	margin: 30px 0 10px;
	color: var(--eb-sage-dark);
	font-size: clamp(1.14rem, 1.45vw, 1.36rem);
	font-weight: 750;
	line-height: 1.34;
	letter-spacing: 0;
}

.page-id-3 .entry-content p,
.page-id-3 .entry-content li,
.page-id-14 .entry-content p,
.page-id-14 .entry-content li {
	color: var(--eb-muted-strong);
	font-size: 0.98rem;
	line-height: 1.78;
}

.page-id-3 .entry-content ul,
.page-id-14 .entry-content ul {
	padding-left: 1.25rem;
	margin: 0 0 24px;
}

.page-id-3 .entry-content a,
.page-id-14 .entry-content a {
	color: var(--eb-terracotta-dark);
	font-weight: 700;
	overflow-wrap: anywhere;
}

.purchase-thanks {
	width: min(100%, 1120px);
	margin: 0 auto;
	padding: clamp(34px, 4.5vw, 58px);
	color: var(--eb-sage-dark);
	background:
		radial-gradient(circle at 14% 10%, rgba(226, 200, 177, 0.42), transparent 32%),
		var(--eb-white);
	border: 1px solid rgba(107, 122, 103, 0.18);
	border-radius: 28px;
	box-shadow: var(--eb-shadow);
}

.purchase-thanks .eb-kicker {
	margin-bottom: 18px;
	background: rgba(226, 200, 177, 0.72);
}

.purchase-thanks h1 {
	max-width: 820px;
	margin-bottom: 18px;
	color: var(--eb-ink);
	font-size: clamp(2rem, 4vw, 3.25rem);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.16;
}

.purchase-thanks__lead {
	max-width: 790px;
	margin-bottom: 30px;
	color: var(--eb-muted);
	font-size: clamp(1rem, 1.25vw, 1.08rem);
	line-height: 1.72;
}

.purchase-thanks__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(22px, 3vw, 34px);
	align-items: stretch;
}

.purchase-thanks__panel {
	padding: clamp(26px, 3vw, 38px);
	background: rgba(245, 243, 236, 0.88);
	border: 1px solid rgba(107, 122, 103, 0.18);
	border-radius: 22px;
}

.purchase-thanks__panel h2 {
	margin-bottom: 20px;
	color: var(--eb-sage-dark);
	font-size: clamp(1.42rem, 2vw, 1.9rem);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.18;
}

.purchase-thanks__steps {
	display: grid;
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.purchase-thanks__steps li {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	align-items: start;
	padding: 17px 20px;
	color: var(--eb-sage-dark);
	background: var(--eb-sand);
	border-radius: 16px;
	font-size: clamp(0.94rem, 1vw, 1.02rem);
	font-weight: 700;
	line-height: 1.52;
}

.purchase-thanks__steps strong {
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	color: var(--eb-ivory);
	background: var(--eb-terracotta);
	border-radius: 50%;
	font-size: 0.78rem;
	line-height: 1;
}

.purchase-thanks__support p {
	margin-bottom: 18px;
	color: var(--eb-muted);
	font-size: clamp(0.98rem, 1.08vw, 1.08rem);
	line-height: 1.68;
}

.purchase-thanks__support a {
	color: var(--eb-terracotta-dark);
	font-weight: 800;
	overflow-wrap: normal;
	word-break: normal;
	white-space: nowrap;
}

.purchase-thanks__support strong {
	color: var(--eb-sage-dark);
	font-weight: 850;
}

.purchase-thanks__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.purchase-thanks__button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	color: var(--eb-ivory);
	background: var(--eb-terracotta);
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 850;
	text-decoration: none;
	box-shadow: 0 14px 34px rgba(193, 119, 97, 0.22);
}

.purchase-thanks__button:hover,
.purchase-thanks__button:focus-visible {
	color: var(--eb-ivory);
	background: var(--eb-sage-dark);
}

.purchase-thanks__button--secondary {
	color: var(--eb-sage-dark);
	background: rgba(226, 200, 177, 0.72);
	box-shadow: none;
}

.purchase-thanks__button--secondary:hover,
.purchase-thanks__button--secondary:focus-visible {
	color: var(--eb-ivory);
	background: var(--eb-terracotta);
}

@media (max-width: 700px) {
	.page-id-3 .site-main--content,
	.page-id-14 .site-main--content {
		padding: 54px 0 64px;
	}

	.page-id-3 .entry-content h1,
	.page-id-14 .entry-content h1 {
		font-size: clamp(1.85rem, 8vw, 2.25rem);
	}

	.page-id-3 .entry-content h2,
	.page-id-14 .entry-content h2 {
		margin-top: 26px;
		font-size: clamp(1.08rem, 4.7vw, 1.24rem);
		line-height: 1.36;
	}

	.page-id-3 .entry-content p,
	.page-id-3 .entry-content li,
	.page-id-14 .entry-content p,
	.page-id-14 .entry-content li {
		font-size: 0.94rem;
		line-height: 1.72;
	}

	.purchase-thanks {
		padding: 28px 20px;
		border-radius: 22px;
	}

	.purchase-thanks__grid {
		grid-template-columns: 1fr;
	}

	.purchase-thanks__panel h2 {
		font-size: clamp(1.28rem, 6vw, 1.55rem);
	}

	.purchase-thanks__steps li,
	.purchase-thanks__support p {
		font-size: 0.94rem;
	}

	.purchase-thanks__support a {
		overflow-wrap: anywhere;
		white-space: normal;
	}

	.purchase-thanks__actions,
	.purchase-thanks__button {
		width: 100%;
	}
}

.site-footer {
	padding: 64px 0 25px;
	color: rgba(245, 243, 236, 0.72);
	background: #303a2f;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(2, 1fr);
	gap: 45px;
}

.site-footer h2,
.site-footer h3,
.site-footer a {
	color: var(--eb-ivory);
}

.site-footer h2 {
	margin-bottom: 12px;
	font-size: 2rem;
}

.site-footer h3 {
	margin-bottom: 12px;
	font-family: var(--eb-font);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.site-footer ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-footer li {
	margin-bottom: 7px;
}

.site-footer a {
	font-size: 0.84rem;
	text-decoration-color: rgba(245, 243, 236, 0.35);
}

.site-footer__bottom {
	padding-top: 24px;
	margin-top: 45px;
	border-top: 1px solid rgba(245, 243, 236, 0.13);
	font-size: 0.75rem;
}

.woocommerce ul.products li.product,
.woocommerce div.product {
	color: var(--eb-ink);
}

.woocommerce ul.products li.product {
	overflow: hidden;
	padding-bottom: 20px;
	background: var(--eb-white);
	border: 1px solid var(--eb-border);
	border-radius: 18px;
	box-shadow: var(--eb-shadow-small);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
	margin-right: 18px;
	margin-left: 18px;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price {
	color: var(--eb-terracotta-dark);
	font-weight: 850;
}

@media (max-width: 1040px) {
	.eb-hero__grid,
	.eb-story,
	.eb-book-offer__grid,
	.eb-final-cta,
	.eb-lead-box {
		grid-template-columns: 1fr;
	}

	.eb-hero__content {
		max-width: 760px;
	}

	.eb-hero__visual {
		max-width: 760px;
		margin-inline: auto;
	}

	.eb-benefit-strip__grid,
	.eb-personas {
		grid-template-columns: repeat(2, 1fr);
	}

	.eb-benefit-strip__grid > div:nth-child(2) {
		border-right: 0;
	}

	.eb-benefit-strip__grid > div:nth-child(-n+2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}

	.eb-story__image {
		max-width: 760px;
	}

	.eb-book-mockup {
		margin-bottom: 35px;
	}

	.eb-final-cta__actions {
		align-items: flex-start;
	}
}

@media (max-width: 900px) {
	.eb-section {
		padding: 82px 0;
	}

	.eb-grid {
		grid-template-columns: 1fr;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.site-nav {
		display: none;
		position: absolute;
		top: 78px;
		right: 20px;
		left: 20px;
		padding: 18px;
		background: var(--eb-white);
		border: 1px solid var(--eb-border);
		border-radius: 16px;
		box-shadow: var(--eb-shadow);
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav ul {
		align-items: stretch;
		flex-direction: column;
		gap: 4px;
	}

	.site-nav a {
		display: block;
		padding: 9px;
	}

	.eb-curriculum {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 650px) {
	html,
	body {
		max-width: 100%;
		overflow-x: clip;
	}

	body {
		font-size: 16px;
	}

	.eb-container {
		width: auto;
		max-width: none;
		margin-right: 14px;
		margin-left: 14px;
	}

	.site-header__inner {
		gap: 10px;
	}

	.site-branding {
		min-width: 0;
		flex: 1 1 auto;
		gap: 10px;
		font-size: 1.14rem;
	}

	.site-branding__mark {
		width: 40px;
		height: 40px;
		flex: 0 0 40px;
	}

	.site-branding span:last-child {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.menu-toggle {
		flex: 0 0 auto;
		padding: 8px 11px;
		font-size: 0.88rem;
	}

	.eb-section,
	.eb-hero {
		padding: 64px 0;
	}

	h1 {
		font-size: clamp(2.7rem, 14vw, 3.65rem);
	}

	h2 {
		font-size: clamp(2rem, 10vw, 2.8rem);
	}

	.eb-hero__grid {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.eb-hero__visual {
		width: 100%;
		padding: 20px 0;
	}

	.eb-float-card {
		position: relative;
		right: auto;
		bottom: auto;
		left: auto;
		max-width: none;
		margin-top: 10px;
	}

	.eb-benefit-strip__grid,
	.eb-personas,
	.eb-offer-points,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.eb-benefit-strip__grid > div,
	.eb-benefit-strip__grid > div:nth-child(2) {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}

	.eb-benefit-strip__grid > div:last-child {
		border-bottom: 0;
	}

	.eb-story__note {
		position: relative;
		right: auto;
		bottom: auto;
		margin: -15px 15px 0;
	}

	.eb-book-mockup {
		width: 84%;
	}

	.eb-curriculum article {
		grid-template-columns: 1fr;
	}

	.eb-book-mockup__cover {
		padding: 30px;
	}

	.eb-lead-box {
		padding: 30px 24px;
	}

	.eb-lead-form {
		grid-template-columns: 1fr;
	}

	.eb-hero__actions,
	.eb-offer__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.eb-hero__actions .eb-button,
	.eb-offer__actions .eb-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
