/*
Theme Name: Sue Wootton Genesis
Theme URI: https://suewootton.com/
Description: A Genesis child theme for Sue Wootton — poet, novelist, essayist
Author: Arts Net
Author URI: https://arts.nz/
Template: genesis
Version: 2.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sue-wootton-genesis
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
	/* Palette — warm literary tones */
	--ink:          #1a1a2e;
	--ink-soft:     #3a3a52;
	--stone:        #6b6b7b;
	--parchment:    #f7f5f0;
	--cream:        #fffdf7;
	--sand:         #e8e4db;
	--moss:         #2d5a3d;
	--moss-dark:    #1e3f2b;
	--moss-tint:    #e9f2ec;
	--rust:         #a0522d;
	--gold:         #c49b38;
	--white:        #ffffff;

	/* Typography */
	--font-display: 'Fraunces', 'Georgia', serif;
	--font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

	/* Spacing */
	--space-xs:  0.5rem;
	--space-sm:  1rem;
	--space-md:  1.5rem;
	--space-lg:  3rem;
	--space-xl:  5rem;
	--space-xxl: 8rem;

	/* Layout */
	--max-width:     1200px;
	--max-narrow:    780px;
	--header-height: 72px;

	/* Transitions */
	--ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
	font-size: 100%;
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
}

body {
	font-family: var(--font-body);
	font-size: 1.05rem;
	line-height: 1.72;
	color: var(--ink);
	background: var(--cream);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--moss); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--moss-dark); }

.wrap {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 var(--space-md);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 500;
	line-height: 1.25;
	color: var(--ink);
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

p { margin-bottom: var(--space-sm); }

blockquote {
	border-left: 3px solid var(--gold);
	margin: var(--space-md) 0;
	padding: var(--space-sm) var(--space-md);
	font-style: italic;
	color: var(--ink-soft);
	background: rgba(196, 155, 56, 0.06);
}

/* ============================================================
   TOP BAR — slim utility strip
   ============================================================ */
.top-bar {
	background: var(--ink);
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.78rem;
	letter-spacing: 0.03em;
	padding: 0;
}

.top-bar .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 36px;
}

.top-bar-tagline {
	font-style: italic;
	color: rgba(255, 255, 255, 0.5);
}

.top-bar-nav .top-menu {
	display: flex;
	list-style: none;
	gap: 0;
	margin: 0;
	padding: 0;
}

.top-bar-nav .top-menu li {
	position: relative;
}

.top-bar-nav .top-menu li + li::before {
	content: '\00b7';
	color: rgba(255, 255, 255, 0.25);
	margin: 0 0.1rem;
}

.top-bar-nav .top-menu a {
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	padding: 0.5rem 0.5rem;
	transition: color 0.2s var(--ease);
}

.top-bar-nav .top-menu a:hover {
	color: var(--gold);
}

/* ============================================================
   HEADER — Brand + Primary Nav
   ============================================================ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 253, 247, 0.95);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--sand);
}

.site-header .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
}

/* Site brand — title + subtitle grouped */
.site-brand {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.site-logo img {
	height: 44px;
	width: auto;
}

.site-brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.site-title {
	font-family: var(--font-display);
	font-size: 1.55rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	margin: 0;
	line-height: 1.15;
}

.site-title a {
	color: var(--ink);
	text-decoration: none;
}

.site-title a:hover { color: var(--moss); }

.title-accent {
	color: var(--moss);
	position: relative;
}

/* Gold underline accent beneath "Wootton" */
.title-accent::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 2px;
	background: var(--gold);
	border-radius: 1px;
}

.site-description {
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--stone);
	margin: 0;
	padding: 0;
}

/* Primary Navigation — inline with brand */
.nav-primary {
	display: flex;
	align-items: center;
}

.nav-primary .genesis-nav-menu,
.nav-primary .menu {
	display: flex;
	list-style: none;
	gap: 0.15rem;
	margin: 0;
	padding: 0;
}

.nav-primary .genesis-nav-menu li,
.nav-primary .menu li {
	position: relative;
}

.nav-primary .genesis-nav-menu a,
.nav-primary .menu a {
	display: block;
	padding: 0.55rem 0.9rem;
	font-family: var(--font-body);
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--ink-soft);
	text-decoration: none;
	letter-spacing: 0.02em;
	border-radius: 6px;
	transition: all 0.25s var(--ease);
	position: relative;
}

/* Active / hover — underline accent + color */
.nav-primary .genesis-nav-menu a::after,
.nav-primary .menu a::after {
	content: '';
	position: absolute;
	left: 0.9rem;
	right: 0.9rem;
	bottom: 4px;
	height: 2px;
	background: var(--moss);
	transform: scaleX(0);
	transition: transform 0.3s var(--ease);
	border-radius: 1px;
}

.nav-primary .genesis-nav-menu a:hover::after,
.nav-primary .menu a:hover::after,
.nav-primary .genesis-nav-menu .current-menu-item > a::after,
.nav-primary .menu .current-menu-item > a::after {
	transform: scaleX(1);
}

.nav-primary .genesis-nav-menu a:hover,
.nav-primary .menu a:hover,
.nav-primary .genesis-nav-menu .current-menu-item > a,
.nav-primary .menu .current-menu-item > a {
	color: var(--moss);
}

/* Sub-menus */
.nav-primary .genesis-nav-menu .sub-menu,
.nav-primary .menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 230px;
	background: var(--white);
	border: 1px solid var(--sand);
	border-radius: 10px;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
	padding: 0.5rem;
	list-style: none;
	z-index: 200;
}

.nav-primary .genesis-nav-menu li:hover > .sub-menu,
.nav-primary .menu li:hover > .sub-menu {
	display: block;
}

.nav-primary .sub-menu a {
	padding: 0.5rem 0.85rem;
	font-size: 0.84rem;
	border-radius: 6px;
}

.nav-primary .sub-menu a::after { display: none; }

.nav-primary .sub-menu a:hover {
	background: var(--moss-tint);
}

/* Mobile menu toggle */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	padding: 0.5rem;
	cursor: pointer;
	color: var(--ink);
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: currentColor;
	margin: 5px 0;
	transition: all 0.3s var(--ease);
	border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO — Full-width atmospheric opener
   ============================================================ */
.hero {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--ink);
}

.hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.35;
	filter: saturate(0.6);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(26, 26, 46, 0.85) 0%,
		rgba(45, 90, 61, 0.6) 50%,
		rgba(26, 26, 46, 0.7) 100%
	);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: var(--space-xxl) var(--space-md);
	color: var(--white);
}

.hero-subtitle {
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: var(--space-sm);
}

.hero-title {
	font-family: var(--font-display);
	font-size: clamp(2.8rem, 6vw, 5rem);
	font-weight: 400;
	line-height: 1.1;
	color: var(--white);
	margin-bottom: var(--space-md);
}

.hero-title em {
	font-style: normal;
	color: var(--gold);
}

.hero-description {
	font-size: 1.15rem;
	max-width: 560px;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.7;
	margin-bottom: var(--space-lg);
}

.hero-actions {
	display: flex;
	gap: var(--space-sm);
	flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.button,
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.75rem;
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	border: 2px solid transparent;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s var(--ease);
	text-decoration: none;
}

.btn-primary {
	background: var(--moss);
	color: var(--white);
	border-color: var(--moss);
}

.btn-primary:hover {
	background: var(--moss-dark);
	border-color: var(--moss-dark);
	color: var(--white);
}

.btn-outline {
	background: transparent;
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--white);
	color: var(--white);
}

.btn-text {
	background: none;
	border: none;
	padding: 0.5rem 0;
	color: var(--moss);
	font-weight: 600;
}

.btn-text:hover { color: var(--moss-dark); }
.btn-text::after {
	content: ' →';
	transition: transform 0.2s var(--ease);
}

/* ============================================================
   ABOUT SECTION — Homepage
   ============================================================ */
.about-section {
	padding: var(--space-xl) 0;
}

.about-grid {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: var(--space-xl);
	align-items: start;
}

.about-photo {
	position: relative;
}

.about-photo img {
	border-radius: 12px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-photo::after {
	content: '';
	position: absolute;
	top: 16px;
	left: 16px;
	right: -16px;
	bottom: -16px;
	border: 2px solid var(--gold);
	border-radius: 12px;
	z-index: -1;
	opacity: 0.4;
}

.about-text h2 {
	margin-bottom: var(--space-md);
}

.about-text h2 span {
	color: var(--moss);
}

.about-text p {
	color: var(--ink-soft);
	font-size: 1.05rem;
}

.about-text .awards-list {
	margin: var(--space-md) 0;
	padding: 0;
	list-style: none;
}

.about-text .awards-list li {
	padding: 0.4rem 0 0.4rem 1.5rem;
	position: relative;
	color: var(--ink-soft);
	font-size: 0.95rem;
}

.about-text .awards-list li::before {
	content: '✦';
	position: absolute;
	left: 0;
	color: var(--gold);
	font-size: 0.75rem;
}

/* ============================================================
   BOOKS SECTION
   ============================================================ */
.books-section {
	padding: var(--space-xl) 0;
	background: var(--parchment);
}

.section-header {
	text-align: center;
	margin-bottom: var(--space-xl);
}

.section-header .section-label {
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--moss);
	margin-bottom: 0.5rem;
}

.section-header h2 { margin-bottom: 0.75rem; }

.section-header p {
	color: var(--stone);
	max-width: 550px;
	margin: 0 auto;
}

.books-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: var(--space-lg) var(--space-md);
}

.book-card {
	text-align: center;
	transition: transform 0.4s var(--ease);
}

.book-card:hover { transform: translateY(-8px); }

.book-cover {
	position: relative;
	margin-bottom: var(--space-sm);
	border-radius: 4px;
	overflow: hidden;
	box-shadow:
		0 4px 8px rgba(0, 0, 0, 0.08),
		0 12px 28px rgba(0, 0, 0, 0.12),
		4px 4px 0 rgba(0, 0, 0, 0.04);
	aspect-ratio: 2/3;
	background: var(--sand);
}

.book-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ease);
}

.book-card:hover .book-cover img {
	transform: scale(1.03);
}

/* Spine shadow effect */
.book-cover::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 12px;
	background: linear-gradient(90deg, rgba(0,0,0,0.15) 0%, transparent 100%);
	z-index: 2;
}

.book-card h3 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.book-card h3 a {
	color: var(--ink);
}

.book-card h3 a:hover { color: var(--moss); }

.book-card .book-meta {
	font-size: 0.8rem;
	color: var(--stone);
	font-style: italic;
}

/* ============================================================
   FEATURED POEM SECTION
   ============================================================ */
.poem-section {
	padding: var(--space-xl) 0;
	background: var(--ink);
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.poem-section::before {
	content: '"';
	position: absolute;
	top: -60px;
	left: -20px;
	font-family: var(--font-display);
	font-size: 400px;
	color: rgba(196, 155, 56, 0.06);
	line-height: 1;
	pointer-events: none;
}

.poem-inner {
	max-width: var(--max-narrow);
	margin: 0 auto;
	padding: 0 var(--space-md);
	text-align: center;
}

.poem-section .section-label {
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: var(--space-md);
}

.poem-section h2 {
	color: var(--white);
	margin-bottom: var(--space-lg);
	font-style: italic;
}

.poem-body {
	font-family: var(--font-display);
	font-size: 1.1rem;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.85);
	text-align: left;
	white-space: pre-line;
}

.poem-body .stanza {
	margin-bottom: var(--space-md);
}

.poem-attribution {
	margin-top: var(--space-lg);
	font-size: 0.85rem;
	color: var(--gold);
	letter-spacing: 0.05em;
}

/* ============================================================
   LATEST PUBLICATIONS / REVIEWS
   ============================================================ */
.latest-section {
	padding: var(--space-xl) 0;
}

.latest-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-lg);
}

.latest-card {
	background: var(--white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.3s var(--ease);
}

.latest-card:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.latest-card-image {
	height: 240px;
	overflow: hidden;
}

.latest-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ease);
}

.latest-card:hover .latest-card-image img {
	transform: scale(1.05);
}

.latest-card-body {
	padding: var(--space-md);
}

.latest-card-body h3 {
	margin-bottom: 0.75rem;
}

.latest-card-body p {
	color: var(--stone);
	font-size: 0.95rem;
}

.latest-card-body blockquote {
	font-size: 0.9rem;
	margin: var(--space-sm) 0 0;
}

/* ============================================================
   INNER PAGES
   ============================================================ */
.page-hero {
	background: var(--parchment);
	padding: var(--space-xl) 0 var(--space-lg);
	border-bottom: 1px solid var(--sand);
}

.page-hero h1 {
	margin-bottom: 0.5rem;
}

.page-hero .breadcrumb {
	font-size: 0.85rem;
	color: var(--stone);
	margin-bottom: var(--space-sm);
}

.page-hero .breadcrumb a {
	color: var(--moss);
}

.page-content {
	max-width: var(--max-narrow);
	margin: 0 auto;
	padding: var(--space-xl) var(--space-md);
}

.page-content ul,
.page-content ol {
	margin: 0.75rem 0 1rem 1rem;
	padding-left: 1.25rem;
	list-style: disc;
}

.page-content img {
	border-radius: 8px;
	margin: var(--space-md) 0;
}

/* Single book page */
.single-book-layout {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: var(--space-xl);
	max-width: var(--max-width);
	margin: 0 auto;
	padding: var(--space-xl) var(--space-md);
}

.single-book-cover {
	position: sticky;
	top: calc(var(--header-height) + var(--space-md));
}

.single-book-cover img {
	border-radius: 4px;
	box-shadow:
		0 8px 20px rgba(0, 0, 0, 0.12),
		0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Archive grid */
.archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: var(--space-md);
	max-width: var(--max-width);
	margin: 0 auto;
	padding: var(--space-lg) var(--space-md) var(--space-xl);
}

.archive-card {
	background: var(--white);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.archive-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.archive-card-thumb {
	height: 200px;
	overflow: hidden;
	background: var(--parchment);
}

.archive-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.archive-card-body {
	padding: var(--space-md);
}

.archive-card-body h3 {
	font-size: 1.15rem;
	margin-bottom: 0.5rem;
}

.archive-card-body h3 a { color: var(--ink); }
.archive-card-body h3 a:hover { color: var(--moss); }

.archive-card-body .entry-meta {
	font-size: 0.82rem;
	color: var(--stone);
	margin-bottom: 0.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
	background: #2a3d32;
	color: rgba(255, 255, 255, 0.8);
	padding: var(--space-lg) 0 var(--space-md);
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: start;
	gap: var(--space-lg);
	flex-wrap: wrap;
}

.footer-brand .footer-title {
	font-family: var(--font-display);
	font-size: 1.3rem;
	color: var(--white);
	margin-bottom: 0.5rem;
}

.footer-brand p {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
}

.footer-nav h4 {
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: var(--space-sm);
}

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

.footer-nav li {
	margin-bottom: 0.4rem;
}

.footer-nav a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
}

.footer-nav a:hover { color: var(--white); }

.footer-bottom {
	margin-top: var(--space-lg);
	padding-top: var(--space-sm);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.4);
	display: flex;
	justify-content: space-between;
}

/* ============================================================
   WOOCOMMERCE BASIC
   ============================================================ */
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: var(--space-md);
}

.woocommerce ul.products li.product {
	margin: 0;
	padding: 0;
}

.woocommerce .price {
	color: var(--moss);
	font-weight: 600;
}

.woocommerce .button {
	background: var(--moss);
	color: var(--white);
	border: none;
	border-radius: 6px;
	padding: 0.6rem 1.2rem;
	font-size: 0.85rem;
}

.woocommerce .button:hover {
	background: var(--moss-dark);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	padding: var(--space-lg) 0;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--ink-soft);
	background: var(--white);
	border: 1px solid var(--sand);
	transition: all 0.2s var(--ease);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background: var(--moss);
	color: var(--white);
	border-color: var(--moss);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
	.about-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
	.about-photo { max-width: 280px; margin: 0 auto; }
	.latest-grid { grid-template-columns: 1fr; }
	.single-book-layout { grid-template-columns: 1fr; }
	.single-book-cover { position: static; max-width: 250px; margin: 0 auto; }
}

@media (max-width: 768px) {
	/* Hide top bar on mobile */
	.top-bar { display: none; }

	.menu-toggle { display: block; }

	.site-description { display: none; }

	.nav-primary {
		position: fixed;
		top: var(--header-height);
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(255, 253, 247, 0.98);
		backdrop-filter: blur(16px);
		transform: translateX(100%);
		transition: transform 0.35s var(--ease);
		overflow-y: auto;
		padding: var(--space-md);
	}

	.nav-primary.active { transform: translateX(0); }

	.nav-primary .genesis-nav-menu,
	.nav-primary .menu {
		flex-direction: column;
		gap: 0;
	}

	.nav-primary .genesis-nav-menu a,
	.nav-primary .menu a {
		padding: 0.85rem 1rem;
		font-size: 1.1rem;
		border-bottom: 1px solid var(--sand);
		border-radius: 0;
	}

	.nav-primary .genesis-nav-menu a::after,
	.nav-primary .menu a::after {
		display: none;
	}

	.nav-primary .sub-menu {
		position: static;
		box-shadow: none;
		border: none;
		background: var(--parchment);
		border-radius: 0;
		display: block;
	}

	.nav-primary .sub-menu a {
		padding-left: 2rem;
		font-size: 0.95rem;
	}

	.hero { min-height: 55vh; }
	.hero-title { font-size: clamp(2rem, 8vw, 3rem); }

	.books-grid {
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
		gap: var(--space-md) var(--space-sm);
	}

	.footer-inner { flex-direction: column; }
	.footer-bottom { flex-direction: column; gap: 0.5rem; }
}

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