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

:root {
	--black: #080808;
	--black2: #111111;
	--black3: #1a1a1a;
	--gold: #c9a254;
	--gold2: #b8922a;
	--gold-lt: #e2c27d;
	--white: #ffffff;
	--offwhite: #f7f4ef;
	--gray: #888888;
	--gray2: #555555;
	--script: "Great Vibes", cursive;
	--serif: "Playfair Display", Georgia, serif;
	--sans: "Inter", sans-serif;
	--ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body.home {
	background: var(--black);
	color: var(--white);
	font-family: var(--sans);
	font-weight: 400;
	line-height: 1.7;
	overflow-x: hidden;
}

body.home img {
	display: block;
	max-width: 100%;
}

body.home a {
	color: inherit;
	text-decoration: none;
}

.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-delay-1 {
	transition-delay: 0.1s;
}

.reveal-delay-2 {
	transition-delay: 0.2s;
}

.reveal-delay-3 {
	transition-delay: 0.3s;
}

.reveal-delay-4 {
	transition-delay: 0.4s;
}

.reveal-delay-5 {
	transition-delay: 0.5s;
}

.front-page-landing {
	background: var(--black);
}

.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 28px;
	padding: 28px 56px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
	transition: background 0.4s ease, padding 0.4s ease;
}

.site-nav.scrolled {
	background: rgba(8, 8, 8, 0.95);
	padding: 18px 56px;
	border-bottom: 1px solid rgba(201, 162, 84, 0.15);
}

.nav-logo {
	margin-right: auto;
	font-family: var(--script);
	font-size: 1.6rem;
	line-height: 1;
	color: var(--gold);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease;
}

.site-nav.scrolled .nav-logo {
	opacity: 1;
	pointer-events: auto;
}

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

.nav-search {
	display: flex;
	align-items: center;
	height: 42px;
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(201, 162, 84, 0.3);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
	transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-search:focus-within {
	border-color: rgba(201, 162, 84, 0.72);
	background: rgba(255, 255, 255, 0.12);
}

.nav-search .nav-search__input {
	-webkit-appearance: none;
	appearance: none;
	width: 210px;
	height: 100%;
	padding: 0 16px 0 30px;
	border: 0 !important;
	border-radius: 0;
	background: transparent;
	outline: 0 !important;
	box-shadow: none !important;
	color: var(--white);
	-webkit-text-fill-color: var(--white);
	caret-color: var(--white);
	font-family: var(--sans);
	font-size: 0.88rem;
	line-height: 1;
}

.nav-search .nav-search__input::-webkit-search-decoration,
.nav-search .nav-search__input::-webkit-search-cancel-button,
.nav-search .nav-search__input::-webkit-search-results-button,
.nav-search .nav-search__input::-webkit-search-results-decoration {
	display: none;
}

.nav-search .nav-search__input::placeholder {
	color: rgba(255, 255, 255, 0.62);
}

.nav-search .nav-search__input:focus,
.nav-search .nav-search__input:focus-visible {
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
}

.nav-search__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	padding: 0 18px;
	border: 0;
	border-left: 1px solid rgba(201, 162, 84, 0.24);
	border-radius: 0;
	background: rgba(201, 162, 84, 0.16);
	color: var(--white);
	font-family: var(--sans);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	line-height: 1;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-search__submit:hover,
.nav-search__submit:focus {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--black);
	outline: none;
}

.nav-links a {
	font-family: var(--sans);
	font-size: 0.85rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.08em;
	color: var(--white);
	position: relative;
	text-decoration: none;
	transition: color 0.3s ease;
}

.nav-links a:visited,
.nav-links a:hover,
.nav-links a:focus {
	text-decoration: none;
}

.nav-links a::after {
	display: none;
}

.nav-links a:hover {
	color: var(--gold);
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	background: transparent;
	border: 0;
	padding: 0;
}

.nav-toggle span {
	width: 24px;
	height: 1.5px;
	background: var(--white);
	transition: all 0.3s ease;
}

.hero {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 700px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--black);
}

.hero-photo {
	position: absolute;
	top: 0;
	left: 0;
	width: 52%;
	height: 100%;
	overflow: hidden;
	background: linear-gradient(135deg, #080808 0%, #1a1a1a 100%);
}

.hero-photo img {
	width: 100%;
	height: 115%;
	object-fit: cover;
	object-position: center top;
	filter: grayscale(100%) contrast(1.05);
	transform: translateY(0);
	transition: transform 0.1s linear;
	will-change: transform;
}

.hero-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		rgba(8, 8, 8, 0) 0%,
		rgba(8, 8, 8, 0.2) 50%,
		rgba(8, 8, 8, 0.85) 80%,
		rgba(8, 8, 8, 1) 100%
	);
}

.hero-photo::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 30%;
	background: linear-gradient(to top, var(--black), transparent);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	margin-left: auto;
	width: 52%;
	padding: 0 80px 0 40px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.hero-eyebrow {
	font-family: var(--sans);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.25em;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 20px;
	opacity: 0;
	animation: fadeUp 1s var(--ease) 0.3s forwards;
}

.hero-name {
	font-family: var(--script);
	font-size: clamp(4rem, 7vw, 7rem);
	color: var(--gold);
	line-height: 1.05;
	margin-bottom: 24px;
	opacity: 0;
	animation: fadeUp 1.2s var(--ease) 0.5s forwards;
}

.hero-tagline {
	font-family: var(--serif);
	font-size: clamp(0.9rem, 1.3vw, 1.1rem);
	font-weight: 400;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.7;
	max-width: 380px;
	margin-bottom: 44px;
	opacity: 0;
	animation: fadeUp 1.2s var(--ease) 0.8s forwards;
}

.hero-tagline em {
	color: var(--white);
	font-style: italic;
}

.btn-primary,
.btn-outline {
	display: inline-block;
	font-family: var(--sans);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	border-radius: 50px;
	cursor: pointer;
	transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
	padding: 16px 52px;
	background: var(--gold);
	color: var(--black);
	border: 2px solid var(--gold);
	opacity: 0;
	animation: fadeUp 1s var(--ease) 1.1s forwards;
}

.btn-primary:hover {
	background: transparent;
	color: var(--gold);
	transform: translateY(-2px);
}

.btn-outline {
	padding: 16px 40px;
	background: transparent;
	color: var(--gold);
	border: 2px solid var(--gold);
}

.btn-outline:hover {
	background: var(--gold);
	color: var(--black);
	transform: translateY(-2px);
}

.scroll-indicator {
	position: absolute;
	bottom: 36px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	opacity: 0;
	animation: fadeIn 1s ease 1.6s forwards;
	z-index: 10;
}

.scroll-indicator span {
	font-size: 0.65rem;
	letter-spacing: 0.2em;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
}

.scroll-line {
	width: 1px;
	height: 48px;
	background: linear-gradient(to bottom, var(--gold), transparent);
	animation: scrollPulse 2s ease-in-out infinite;
}

.section {
	position: relative;
	padding: 140px 80px;
}

.section-label {
	font-family: var(--sans);
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 16px;
	display: block;
}

.section-title {
	font-family: var(--serif);
	font-size: clamp(1.8rem, 3.5vw, 2.8rem);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 20px;
}

.section-title em {
	font-style: italic;
	color: var(--gold);
}

.section-subtitle {
	font-family: var(--sans);
	font-size: 0.95rem;
	color: var(--gray);
	max-width: 500px;
	line-height: 1.8;
	margin-bottom: 72px;
}

.gold-rule {
	width: 48px;
	height: 2px;
	background: var(--gold);
	margin-bottom: 32px;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.books-section {
	background: var(--black2);
}

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

.book-card {
	position: relative;
	cursor: pointer;
}

.book-card:hover .book-cover-wrap,
.book-card:focus-within .book-cover-wrap {
	transform: translateY(-6px);
	box-shadow:
		0 24px 44px rgba(0, 0, 0, 0.34),
		0 10px 18px rgba(0, 0, 0, 0.22);
}

.book-cover-wrap {
	position: relative;
	overflow: hidden;
	border-radius: 3px;
	margin-bottom: 20px;
	aspect-ratio: 2 / 3;
	background: var(--black3);
	box-shadow:
		0 16px 30px rgba(0, 0, 0, 0.24),
		0 6px 12px rgba(0, 0, 0, 0.18);
	transform-origin: center center;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.book-cover-wrap::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	border-radius: 3px;
	pointer-events: none;
	filter: contrast(310%) brightness(100%);
	box-shadow: rgba(15, 15, 15, 0.1) 0 0 0 1px inset;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.18) 0.65%,
		rgba(255, 255, 255, 0.26) 1.53%,
		rgba(255, 255, 255, 0.12) 2.38%,
		rgba(0, 0, 0, 0.06) 3.26%,
		rgba(255, 255, 255, 0.12) 5.68%,
		rgba(244, 244, 244, 0) 7.2%
	);
}

.book-cover-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 18%),
		linear-gradient(0deg, rgba(0, 0, 0, 0.12), transparent 24%);
}

.book-cover-wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.book-card:hover .book-cover-wrap img,
.book-card:focus-within .book-cover-wrap img {
	transform: scale(1.015);
}

.book-cover-link {
	display: block;
	text-decoration: none;
}

.book-cover-overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.4s ease;
	display: flex;
	align-items: flex-end;
	padding: 20px;
	pointer-events: none;
}

.book-card:hover .book-cover-overlay {
	opacity: 1;
}

.book-cover-overlay span {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: var(--gold);
	text-transform: uppercase;
	border-bottom: 0;
	padding-bottom: 0;
}

.book-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: var(--black3);
	border: 1px solid rgba(201, 162, 84, 0.15);
	padding: 20px;
	text-align: center;
}

.book-placeholder-num {
	font-family: var(--serif);
	font-size: 0.65rem;
	letter-spacing: 0.2em;
	color: var(--gold2);
	margin-bottom: 12px;
}

.book-placeholder-title {
	font-family: var(--serif);
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.4;
}

.book-genre {
	font-size: 0.65rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 8px;
}

.book-title {
	font-family: var(--serif);
	font-size: 1rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 0;
	line-height: 1.3;
}

.book-title a {
	color: inherit;
	text-decoration: none;
}

.books-cta {
	text-align: center;
	margin-top: 64px;
}

.about-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	min-height: 1000px;
	height: 1000px;
}

.about-image-col {
	position: relative;
	overflow: hidden;
	min-height: 500px;
	background: #111111;
}

.about-image-col img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
	filter: grayscale(100%);
	transition: transform 0.8s var(--ease);
}

.about-image-col:hover img {
	transform: scale(1.03);
}

.about-image-col::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, transparent 60%, var(--black) 100%);
}

.about-content-col {
	background: var(--black);
	padding: 100px 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.about-quote {
	font-family: var(--serif);
	font-size: clamp(1.1rem, 1.8vw, 1.5rem);
	font-style: italic;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	margin-bottom: 40px;
	position: relative;
	padding-left: 28px;
}

.about-quote::before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	width: 3px;
	height: calc(100% - 8px);
	background: var(--gold);
}

.about-copy {
	margin-bottom: 0;
}

.about-stats {
	display: flex;
	gap: 48px;
	margin-top: 48px;
	padding-top: 48px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
	text-align: left;
}

.stat-num {
	font-family: var(--serif);
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--gold);
	line-height: 1;
	margin-bottom: 6px;
}

.stat-label {
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gray);
}

.about-cta {
	margin-top: 40px;
}

.testimonials-section {
	background: var(--black);
}

.testimonials-track {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.testimonial-card {
	background: var(--black2);
	border: 1px solid rgba(201, 162, 84, 0.12);
	border-radius: 6px;
	padding: 44px 36px;
	position: relative;
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
	border-color: rgba(201, 162, 84, 0.4);
	transform: translateY(-4px);
}

.testimonial-card::before {
	content: "\201C";
	font-family: var(--serif);
	font-size: 5rem;
	color: var(--gold);
	opacity: 0.25;
	position: absolute;
	top: 12px;
	left: 28px;
	line-height: 1;
}

.testimonial-stars {
	display: flex;
	gap: 4px;
	margin-bottom: 24px;
}

.testimonial-stars span {
	color: var(--gold);
	font-size: 0.85rem;
}

.testimonial-text {
	font-family: var(--serif);
	font-size: 0.95rem;
	font-style: italic;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.85;
	margin-bottom: 32px;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 14px;
}

.author-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--black3);
	border: 1px solid rgba(201, 162, 84, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--serif);
	font-size: 0.85rem;
	color: var(--gold);
	flex-shrink: 0;
}

.author-info-name {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 2px;
}

.author-info-role {
	font-size: 0.72rem;
	letter-spacing: 0.05em;
	color: var(--gray);
}

.newsletter-section {
	background: var(--black2);
	text-align: center;
	padding: 120px 80px;
	position: relative;
	overflow: hidden;
}

.newsletter-section::before {
	content: "";
	position: absolute;
	top: -60px;
	left: 50%;
	transform: translateX(-50%);
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(201, 162, 84, 0.06) 0%, transparent 70%);
	pointer-events: none;
}

.newsletter-inner {
	max-width: 580px;
	margin: 0 auto;
}

.newsletter-icon {
	width: 56px;
	height: 56px;
	border: 1px solid rgba(201, 162, 84, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 32px;
	font-size: 1.3rem;
}

.newsletter-label {
	display: block;
	margin-bottom: 12px;
}

.newsletter-section .section-title {
	margin-bottom: 16px;
}

.newsletter-section .section-subtitle {
	margin: 0 auto 48px;
	text-align: center;
}

.newsletter-form {
	display: flex;
	gap: 0;
	max-width: 480px;
	margin: 0 auto;
	border: 1px solid rgba(201, 162, 84, 0.3);
	border-radius: 50px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.03);
	transition: border-color 0.3s ease;
}

.newsletter-form:focus-within {
	border-color: var(--gold);
}

.newsletter-form input {
	flex: 1;
	background: transparent;
	border: none;
	outline: none;
	padding: 16px 28px;
	font-family: var(--sans);
	font-size: 0.85rem;
	color: var(--white);
}

.newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
	background: var(--gold);
	color: var(--black);
	border: none;
	padding: 16px 32px;
	font-family: var(--sans);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: background 0.3s ease;
	white-space: nowrap;
}

.newsletter-form button:hover,
.newsletter-form button.is-success {
	background: var(--gold-lt);
}

.newsletter-fine {
	margin-top: 16px;
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.25);
	letter-spacing: 0.05em;
}

.blog-section {
	background: var(--black);
}

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

.blog-card {
	background: var(--black2);
	border-radius: 6px;
	overflow: hidden;
	transition: transform 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.04);
}

.blog-card:hover {
	transform: translateY(-6px);
}

.blog-card-image {
	display: block;
	aspect-ratio: 16 / 9;
	background: var(--black3);
	text-decoration: none;
	overflow: hidden;
	position: relative;
}

.blog-card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-image img {
	transform: scale(1.04);
}

.blog-img-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--black3), #222222);
}

.blog-img-placeholder span {
	font-family: var(--serif);
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	color: rgba(201, 162, 84, 0.4);
	text-transform: uppercase;
}

.blog-card-body {
	padding: 32px 28px;
}

.blog-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 14px;
}

.blog-tag {
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gold);
	padding: 3px 10px;
	border: 1px solid rgba(201, 162, 84, 0.35);
	border-radius: 20px;
}

.blog-date {
	font-size: 0.72rem;
	color: var(--gray);
}

.blog-card-title {
	font-family: var(--serif);
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--white);
	line-height: 1.45;
	margin-bottom: 12px;
	transition: color 0.3s ease;
}

.blog-card-title a,
.blog-card-title a:visited {
	color: inherit;
	text-decoration: none;
}

.blog-card-title a:hover,
.blog-card-title a:focus {
	color: inherit;
	text-decoration: none;
}

.blog-card:hover .blog-card-title {
	color: var(--gold);
}

.blog-card-excerpt {
	font-size: 0.82rem;
	color: var(--gray);
	line-height: 1.75;
	margin-bottom: 24px;
}

.blog-read-more {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	transition: gap 0.3s ease;
}

.blog-read-more:visited,
.blog-read-more:focus {
	color: var(--gold);
	text-decoration: none;
}

.blog-read-more:hover {
	color: var(--black2);
	text-decoration: none;
}

.blog-card:hover .blog-read-more {
	gap: 14px;
}

.blog-read-more::after {
	content: "→";
}

.blog-cta {
	margin-top: 56px;
}

.site-footer {
	background: #050505;
	border-top: 1px solid rgba(201, 162, 84, 0.15);
	padding: 88px 72px 40px;
}

.footer-top {
	display: grid;
	justify-items: center;
	text-align: center;
	gap: 32px;
	margin-bottom: 46px;
}

.footer-brand-name {
	font-family: var(--script);
	font-size: clamp(3rem, 4vw, 4.1rem);
	color: var(--gold);
	margin-bottom: 0;
}

.footer-nav {
	width: 100%;
}

.footer-col-title {
	font-family: var(--sans);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 12px;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 0;
}

.footer-links--inline {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0;
}

.footer-links--inline li {
	display: inline-flex;
	align-items: center;
}

.footer-links--inline li + li::before {
	content: "|";
	margin: 0 10px;
	color: rgba(255, 255, 255, 0.42);
}

.footer-links a {
	font-size: 0.88rem;
	color: var(--white);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:visited,
.footer-links a:hover,
.footer-links a:focus {
	color: var(--gold);
	text-decoration: none;
}

.footer-contact {
	display: grid;
	justify-items: center;
	gap: 10px;
}

.footer-contact__email,
.footer-contact__email:visited {
	font-size: 0.88rem;
	color: var(--white);
	text-decoration: none;
}

.footer-contact__email:hover,
.footer-contact__email:focus {
	color: var(--gold);
	text-decoration: none;
}

.footer-social-link {
	width: 58px;
	height: 58px;
	border: 1px solid rgba(201, 162, 84, 0.18);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.75);
	background: rgba(255, 255, 255, 0.03);
	box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.02);
	transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.footer-social-link svg {
	width: 18px;
	height: 18px;
	display: block;
}

.footer-social-link:visited {
	color: rgba(255, 255, 255, 0.75);
}

.footer-social-link:hover,
.footer-social-link:focus {
	border-color: var(--gold);
	color: var(--gold);
	background: rgba(201, 162, 84, 0.08);
	box-shadow: 0 0 0 10px rgba(201, 162, 84, 0.04);
	text-decoration: none;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.footer-copy {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.25);
}

.footer-copy span {
	color: var(--gold);
}

.section-white {
	background: var(--offwhite) !important;
}

.section-white .section-label {
	color: var(--gold2);
}

.section-white .section-title {
	color: #0a0a0a;
}

.section-white .section-title em {
	color: var(--gold2);
}

.section-white .section-subtitle {
	color: #555555;
}

.section-white .gold-rule {
	background: var(--gold2);
}

.section-white .book-genre {
	color: var(--gold2);
}

.section-white .book-title {
	color: #0a0a0a;
}

.section-white .book-placeholder {
	background: #ede9e2;
	border: 1px solid rgba(0, 0, 0, 0.07);
}

.section-white .book-placeholder-title {
	color: #333333;
}

.section-white .btn-outline {
	color: #0a0a0a;
	border-color: #0a0a0a;
}

.section-white .btn-outline:hover {
	background: #0a0a0a;
	color: var(--offwhite);
}

.section-white .testimonial-card {
	background: #ffffff;
	border-color: rgba(0, 0, 0, 0.08);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.section-white .testimonial-card:hover {
	border-color: var(--gold);
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.section-white .testimonial-card::before {
	color: var(--gold);
	opacity: 0.18;
}

.section-white .testimonial-text {
	color: #333333;
}

.section-white .author-avatar {
	background: #ede9e2;
	border-color: var(--gold);
}

.section-white .author-info-name {
	color: #0a0a0a;
}

.section-white .author-info-role {
	color: #888888;
}

.section-white .blog-card {
	background: #ffffff;
	border-color: rgba(0, 0, 0, 0.07);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.section-white .blog-card:hover {
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.section-white .blog-img-placeholder {
	background: linear-gradient(135deg, #ede9e2, #ddd8cf);
}

.section-white .blog-img-placeholder span {
	color: rgba(0, 0, 0, 0.2);
}

.section-white .blog-date {
	color: #999999;
}

.section-white .blog-card-title {
	color: #0a0a0a;
}

.section-white .blog-card:hover .blog-card-title {
	color: var(--gold2);
}

.section-white .blog-card-excerpt {
	color: #666666;
}

.section-separator {
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(201, 162, 84, 0.2), transparent);
	margin: 0;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(28px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes scrollPulse {
	0%,
	100% {
		opacity: 0.2;
		transform: scaleY(0.8);
	}

	50% {
		opacity: 1;
		transform: scaleY(1);
	}
}

@media (max-width: 1024px) {
	.books-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.testimonials-track {
		grid-template-columns: repeat(2, 1fr);
	}

	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-top {
		gap: 28px;
	}

	.about-section {
		grid-template-columns: 1fr;
	}

	.about-image-col {
		min-height: 400px;
	}

	.about-content-col {
		padding: 80px 60px;
	}
}

@media (max-width: 768px) {
	.section {
		padding: 80px 24px;
	}

	.site-nav {
		padding: 20px 24px;
	}

	.site-nav.scrolled {
		padding: 14px 24px;
	}

	.nav-links {
		display: none;
	}

	.nav-search {
		display: flex;
		margin-left: auto;
		margin-right: 16px;
	}

	.nav-search .nav-search__input {
		width: 150px;
		padding: 0 14px 0 24px;
	}

	.nav-search__submit {
		display: none;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-links.open {
		display: flex;
		flex-direction: column;
		position: fixed;
		inset: 0;
		background: var(--black);
		align-items: center;
		justify-content: center;
		gap: 32px;
		z-index: 200;
	}

	.nav-links.open a {
		font-size: 1.3rem;
	}

	.hero-photo {
		width: 100%;
	}

	.hero-content {
		width: 100%;
		padding: 0 24px;
		margin: 0;
		background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 60%, transparent);
	}

	.hero-name {
		font-size: 3.5rem;
	}

	.books-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.testimonials-track,
	.blog-grid,
	.footer-top {
		grid-template-columns: 1fr;
	}

	.footer-links--inline li + li::before {
		margin: 0 8px;
	}

	.about-stats {
		flex-wrap: wrap;
		gap: 28px;
	}

	.newsletter-form {
		flex-direction: column;
		border-radius: 8px;
	}

	.newsletter-form button {
		border-radius: 0 0 8px 8px;
		text-align: center;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.footer-links--inline {
		gap: 10px 0;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}
