/*
Theme Name: Indigo House Blog
Theme URI: https://indigohouse.la
Author: Indigo House
Description: Minimal luxury blog theme for Indigo House, Luang Prabang. Indigo & aged-gold heritage aesthetic.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: indigohouse-blog
Tags: blog, one-column, two-columns, right-sidebar, custom-logo, custom-menu, featured-images, translation-ready
*/

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */

:root {
	--ink:         #0f172a;
	--indigo-mid:  #1e2d50;
	--indigo-soft: #253660;
	--deep:        #0d1635;
	--parchment:   #f7f3ec;
	--aged-gold:   #b8965a;
	--gold-wash:   #e8dcc8;
	--smoke:       #7a7570;
	--mist:        #ede9e2;
	--accent:      #c17f3e;
	--white:       #fff;
	--text-body:   #2e2a26;

	--nav-h: 64px;
	--container: 1140px;
	--reading-max: 720px;
	--radius-sm: 3px;
	--radius-pill: 20px;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

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

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

body {
	background: var(--parchment);
	color: var(--text-body);
	font-family: 'Instrument Sans', system-ui, sans-serif;
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.nav-drawer-open { overflow: hidden; }

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

a { color: var(--aged-gold); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--accent); }

ul, ol { list-style: none; }

button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: 400;
	line-height: 1.25;
	color: var(--ink);
}

h1 { font-size: clamp(1.9rem, 5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.05rem; }
h5, h6 { font-size: .9rem; font-family: 'Instrument Sans', sans-serif; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--smoke); }

p { margin-bottom: 1.4rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 500; }
em { font-style: italic; }

/* Eyebrow / label pattern */
.eyebrow {
	display: inline-block;
	font-family: 'Instrument Sans', sans-serif;
	font-size: .6rem;
	font-weight: 400;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--aged-gold);
}
.eyebrow::before { content: '◈ '; }

/* Decorative gold rule */
.gold-rule {
	display: block;
	width: 3rem;
	height: 1px;
	background: var(--aged-gold);
	margin: .75rem 0 1.25rem;
}

/* ==========================================================================
   4. LAYOUT UTILITIES
   ========================================================================== */

.site-container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 1.25rem;
}

.site-content {
	padding-top: calc(var(--nav-h) + 2rem);
}

.content-sidebar-wrap {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

/* ==========================================================================
   5. NAVIGATION
   ========================================================================== */

.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	height: var(--nav-h);
	z-index: 300;
	background: transparent;
	transition: background .35s ease, box-shadow .35s ease;
}

.site-header.scrolled {
	background: rgba(15,23,42,.97);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(184,150,90,.22);
	box-shadow: 0 2px 24px rgba(0,0,0,.18);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--nav-h);
	padding: 0 1.25rem;
	max-width: var(--container);
	margin: 0 auto;
}

/* Logo */
.site-logo {
	flex-shrink: 0;
	z-index: 10;
}

.site-logo a {
	text-decoration: none;
	display: flex;
	align-items: center;
}

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

.logo-text {
	font-family: 'Playfair Display', serif;
	font-weight: 300;
	font-size: .78rem;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: var(--white);
	line-height: 1;
}

.logo-text .house {
	color: var(--aged-gold);
}

/* Center nav (desktop) */
.nav-center {
	display: none;
	align-items: center;
	gap: 2rem;
	list-style: none;
}

.nav-center a {
	font-size: .64rem;
	font-weight: 400;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: rgba(255,255,255,.82);
	transition: color .25s;
	padding: .25rem 0;
	position: relative;
}

.nav-center a::after {
	content: '';
	position: absolute;
	bottom: -2px; left: 0; right: 0;
	height: 1px;
	background: var(--aged-gold);
	transform: scaleX(0);
	transition: transform .25s ease;
}

.nav-center a:hover,
.nav-center .current-menu-item > a,
.nav-center .current_page_item > a {
	color: var(--white);
}

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

/* Book Direct button */
.nav-book {
	flex-shrink: 0;
}

.btn-book {
	display: inline-block;
	font-size: .62rem;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--ink) !important;
	background: var(--aged-gold);
	padding: .55rem 1.1rem;
	border-radius: var(--radius-sm);
	transition: background .25s, transform .15s;
	white-space: nowrap;
}

.btn-book:hover {
	background: var(--accent);
	transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 9px;
	border-radius: var(--radius-sm);
	transition: background .2s;
	z-index: 400;
}

.nav-hamburger:hover { background: rgba(255,255,255,.08); }

.hamburger-bar {
	display: block;
	width: 100%;
	height: 1.5px;
	background: var(--white);
	border-radius: 2px;
	transition: transform .3s ease, opacity .2s ease;
	transform-origin: center;
}

.nav-hamburger.is-open .hamburger-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open .hamburger-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ==========================================================================
   6. MOBILE DRAWER
   ========================================================================== */

.nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.55);
	z-index: 380;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s ease;
}

.nav-overlay.is-visible {
	opacity: 1;
	pointer-events: all;
}

.nav-drawer {
	position: fixed;
	top: 0; right: 0;
	width: min(88vw, 340px);
	height: 100%;
	z-index: 390;
	background: linear-gradient(170deg, var(--indigo-mid), var(--deep));
	border-left: 1px solid rgba(184,150,90,.3);
	display: grid;
	grid-template-rows: auto 1fr auto;
	transform: translateX(100%);
	transition: transform .35s cubic-bezier(.4,0,.2,1);
	overflow: hidden;
}

.nav-drawer.is-open { transform: translateX(0); }

/* Drawer header */
.drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 1.25rem;
	height: var(--nav-h);
	border-bottom: 1px solid rgba(255,255,255,.08);
	flex-shrink: 0;
}

.drawer-logo {
	font-family: 'Playfair Display', serif;
	font-size: .72rem;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: var(--white);
}
.drawer-logo .house { color: var(--aged-gold); }

.drawer-close {
	width: 36px; height: 36px;
	background: none;
	border: 1px solid rgba(255,255,255,.15);
	border-radius: var(--radius-sm);
	color: var(--white);
	font-size: 1.1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color .2s, background .2s;
}
.drawer-close:hover { background: rgba(255,255,255,.08); border-color: var(--aged-gold); }

/* Drawer nav list */
.drawer-nav {
	overflow-y: auto;
	padding: 1.5rem 0;
	-webkit-overflow-scrolling: touch;
}

.drawer-nav ul { list-style: none; }

.drawer-nav li { border-bottom: 1px solid rgba(255,255,255,.06); }

.drawer-nav a {
	display: flex;
	align-items: center;
	gap: .75rem;
	padding: .9rem 1.5rem;
	font-size: .72rem;
	font-weight: 400;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(255,255,255,.78);
	transition: color .2s, background .2s;
}
.drawer-nav a:hover,
.drawer-nav .current-menu-item > a {
	color: var(--aged-gold);
	background: rgba(255,255,255,.04);
}
.drawer-nav .nav-icon { font-size: .9rem; opacity: .7; }

/* Drawer footer */
.drawer-footer {
	padding: 1.25rem;
	border-top: 1px solid rgba(255,255,255,.1);
	flex-shrink: 0;
}

.btn-book-drawer {
	display: block;
	text-align: center;
	font-size: .62rem;
	font-weight: 500;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--ink) !important;
	background: var(--aged-gold);
	padding: .85rem 1rem;
	border-radius: var(--radius-sm);
	margin-bottom: .85rem;
	transition: background .2s;
}
.btn-book-drawer:hover { background: var(--accent); }

.drawer-contact {
	display: flex;
	gap: 1rem;
	justify-content: center;
}
.drawer-contact a {
	font-size: .62rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(255,255,255,.55);
	padding: .4rem .6rem;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--radius-sm);
	transition: color .2s, border-color .2s;
}
.drawer-contact a:hover { color: var(--aged-gold); border-color: var(--aged-gold); }

/* ==========================================================================
   7. HERO SECTIONS
   ========================================================================== */

/* Blog index hero */
.blog-hero {
	background: var(--deep);
	position: relative;
	padding: calc(var(--nav-h) + 5rem) 1.25rem 4.5rem;
	overflow: hidden;
	text-align: center;
}

.blog-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(184,150,90,.12), transparent 70%);
	pointer-events: none;
}

/* SVG noise texture overlay */
.blog-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	opacity: .028;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
	pointer-events: none;
}

.blog-hero .eyebrow { color: var(--aged-gold); margin-bottom: .75rem; }

.blog-hero h1 {
	font-family: 'Playfair Display', serif;
	font-weight: 300;
	font-size: clamp(2.2rem, 6vw, 3.8rem);
	color: var(--white);
	line-height: 1.2;
	margin-bottom: 1.1rem;
	position: relative;
	z-index: 1;
}

.blog-hero h1 em { color: var(--aged-gold); font-style: italic; }

.blog-hero p {
	font-family: 'Cormorant', serif;
	font-style: italic;
	font-weight: 300;
	font-size: 1.1rem;
	color: rgba(255,255,255,.65);
	max-width: 480px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* Single post hero */
.post-hero {
	background: var(--deep);
	padding: calc(var(--nav-h) + 3rem) 1.25rem 3.5rem;
	text-align: center;
	position: relative;
}

.post-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(184,150,90,.09), transparent 70%);
	pointer-events: none;
}

.post-hero .eyebrow { margin-bottom: .75rem; }

.post-hero h1 {
	font-size: clamp(1.8rem, 5vw, 3rem);
	color: var(--white);
	max-width: 780px;
	margin: 0 auto 1.5rem;
}

.post-meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	font-size: .7rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(255,255,255,.5);
}

.post-meta-row .meta-author {
	display: flex;
	align-items: center;
	gap: .5rem;
	color: rgba(255,255,255,.7);
}

.post-meta-row .meta-author img {
	width: 28px; height: 28px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid rgba(184,150,90,.4);
}

.post-meta-row .sep { opacity: .35; }

/* ==========================================================================
   8. FEATURED POST CARD
   ========================================================================== */

.featured-post-section {
	padding: 3.5rem 0 0;
}

.featured-post-card {
	background: var(--white);
	border-radius: var(--radius-sm);
	overflow: hidden;
	border: 1px solid var(--mist);
	transition: box-shadow .3s;
}

.featured-post-card:hover { box-shadow: 0 8px 40px rgba(15,23,42,.1); }

.featured-post-image {
	aspect-ratio: 16/9;
	overflow: hidden;
	position: relative;
}

.featured-post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: sepia(12%) saturate(.88);
	transition: filter .5s ease, transform .5s ease;
}

.featured-post-card:hover .featured-post-image img {
	filter: sepia(0) saturate(1);
	transform: scale(1.02);
}

.featured-post-body {
	padding: 2rem 1.5rem 1.75rem;
}

.featured-post-body .eyebrow { margin-bottom: .5rem; }
.featured-post-body h2 { margin-bottom: 1rem; }
.featured-post-body h2 a { color: var(--ink); }
.featured-post-body h2 a:hover { color: var(--indigo-mid); }

.featured-post-excerpt {
	color: var(--smoke);
	font-size: .95rem;
	line-height: 1.75;
	margin-bottom: 1.25rem;
}

.featured-post-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1rem;
	border-top: 1px solid var(--mist);
	font-size: .68rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--smoke);
}

.link-read-more {
	font-size: .68rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--aged-gold);
	border-bottom: 1px solid currentColor;
	padding-bottom: 1px;
	transition: color .2s;
}
.link-read-more:hover { color: var(--accent); }

/* ==========================================================================
   9. POST GRID & CARDS
   ========================================================================== */

.posts-section { padding: 3rem 0 4rem; }

.section-label {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.section-label .eyebrow { margin: 0; }

.posts-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.post-card {
	background: var(--white);
	border: 1px solid var(--mist);
	border-radius: var(--radius-sm);
	overflow: hidden;
	transition: box-shadow .3s, transform .3s;
}

.post-card:hover {
	box-shadow: 0 6px 30px rgba(15,23,42,.09);
	transform: translateY(-2px);
}

.post-card-image {
	aspect-ratio: 16/9;
	overflow: hidden;
}

.post-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: sepia(12%) saturate(.88);
	transition: filter .5s ease, transform .5s ease;
}

.post-card:hover .post-card-image img {
	filter: sepia(0) saturate(1);
	transform: scale(1.03);
}

.post-card-no-image {
	aspect-ratio: 16/9;
	background: linear-gradient(135deg, var(--indigo-mid), var(--deep));
	display: flex;
	align-items: center;
	justify-content: center;
}

.post-card-no-image .placeholder-icon {
	font-size: 2rem;
	opacity: .25;
	color: var(--aged-gold);
}

.post-card-body {
	padding: 1.25rem;
}

.post-card-body .eyebrow { margin-bottom: .4rem; font-size: .58rem; }

.post-card-title {
	font-size: 1.05rem;
	line-height: 1.35;
	margin-bottom: .6rem;
}

.post-card-title a { color: var(--ink); }
.post-card-title a:hover { color: var(--indigo-mid); }

.post-card-excerpt {
	font-size: .875rem;
	color: var(--smoke);
	line-height: 1.65;
	margin-bottom: 0;
}

.post-card-footer {
	padding: .75rem 1.25rem;
	border-top: 1px solid var(--mist);
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: .65rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--smoke);
}

.post-card-footer .link-read { color: var(--aged-gold); font-size: .65rem; letter-spacing: .12em; }
.post-card-footer .link-read:hover { color: var(--accent); }

/* ==========================================================================
   10. PAGINATION
   ========================================================================== */

.indigo-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	margin-top: 2.5rem;
	padding-bottom: 1rem;
}

.indigo-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 .75rem;
	border: 1px solid var(--mist);
	background: var(--parchment);
	color: var(--smoke);
	font-size: .72rem;
	font-weight: 400;
	letter-spacing: .06em;
	border-radius: var(--radius-sm);
	transition: border-color .2s, color .2s, background .2s;
}

.indigo-pagination .page-numbers:hover {
	border-color: var(--aged-gold);
	color: var(--ink);
	background: var(--gold-wash);
}

.indigo-pagination .page-numbers.current {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--aged-gold);
	font-weight: 500;
}

.indigo-pagination .page-numbers.dots {
	border: none;
	background: transparent;
	color: var(--smoke);
}

.indigo-pagination .prev,
.indigo-pagination .next {
	font-size: .62rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	min-width: auto;
	padding: 0 1rem;
}

.indigo-pagination .prev:hover,
.indigo-pagination .next:hover {
	text-decoration: underline;
	text-decoration-color: var(--aged-gold);
	text-underline-offset: 3px;
	background: transparent;
	border-color: var(--mist);
}

/* Focus states — accessibility */
.indigo-pagination .page-numbers:focus-visible {
	outline: 2px solid var(--aged-gold);
	outline-offset: 2px;
}

/* Page links (nextpage support inside single post) */
.indigo-page-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .4rem;
	margin: 2.5rem 0;
	font-size: .72rem;
}

.indigo-page-links span { color: var(--smoke); letter-spacing: .1em; text-transform: uppercase; }

.indigo-page-links a,
.indigo-page-links > span.current-page {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px; height: 32px;
	border: 1px solid var(--mist);
	background: var(--parchment);
	color: var(--smoke);
	border-radius: var(--radius-sm);
	font-size: .72rem;
	transition: border-color .2s, color .2s, background .2s;
}

.indigo-page-links a:hover {
	border-color: var(--aged-gold);
	color: var(--ink);
	background: var(--gold-wash);
}

.indigo-page-links > span.current-page {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--aged-gold);
}

/* Comments pagination */
.comments-pagination .page-numbers {
	min-width: 32px;
	height: 32px;
	font-size: .68rem;
}

/* Load More */
.load-more-wrap {
	text-align: center;
	margin-top: 2.5rem;
}

.btn-load-more {
	display: inline-block;
	font-size: .65rem;
	font-weight: 400;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--aged-gold);
	border: 1px solid var(--aged-gold);
	padding: .75rem 2rem;
	border-radius: var(--radius-pill);
	cursor: pointer;
	background: transparent;
	transition: background .25s, color .25s;
}

.btn-load-more:hover {
	background: var(--aged-gold);
	color: var(--ink);
}

.btn-load-more.is-loading {
	pointer-events: none;
	opacity: .65;
}

.load-spinner {
	display: inline-block;
	width: 14px; height: 14px;
	border: 2px solid rgba(184,150,90,.3);
	border-top-color: var(--aged-gold);
	border-radius: 50%;
	animation: spin .7s linear infinite;
	vertical-align: middle;
	margin-left: .5rem;
}

.end-of-posts {
	font-family: 'Cormorant', serif;
	font-style: italic;
	font-weight: 300;
	color: var(--smoke);
	font-size: 1rem;
	text-align: center;
	margin-top: 2rem;
}

/* aria-live region */
.sr-live { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ==========================================================================
   11. SINGLE POST CONTENT
   ========================================================================== */

.single-post-wrap { padding: 3rem 1.25rem 4rem; }

.entry-content-wrap {
	max-width: var(--reading-max);
	margin: 0 auto;
}

.post-featured-image {
	margin-bottom: 2.5rem;
	border-radius: var(--radius-sm);
	overflow: hidden;
}

.post-featured-image img {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
	filter: sepia(12%) saturate(.88);
	transition: filter .5s;
}

.post-featured-image img:hover { filter: sepia(0) saturate(1); }

/* Entry content typography */
.entry-content {
	font-size: 1.05rem;
	line-height: 1.9;
	color: var(--text-body);
}

.entry-content h2 {
	font-size: clamp(1.3rem, 3vw, 1.8rem);
	margin: 2.5rem 0 1rem;
	color: var(--ink);
}

.entry-content h3 {
	font-size: clamp(1.1rem, 2.5vw, 1.35rem);
	margin: 2rem 0 .75rem;
	color: var(--ink);
}

.entry-content h4, .entry-content h5, .entry-content h6 {
	margin: 1.5rem 0 .5rem;
}

.entry-content p { margin-bottom: 1.5rem; }

.entry-content a {
	color: var(--ink);
	text-decoration-line: underline;
	text-decoration-color: var(--aged-gold);
	text-underline-offset: 3px;
	transition: color .2s;
}
.entry-content a:hover { color: var(--aged-gold); }

.entry-content blockquote {
	margin: 2.5rem 0;
	padding: 1.5rem 2rem;
	border-left: 2px solid var(--aged-gold);
	background: rgba(184,150,90,.05);
	font-family: 'Cormorant', serif;
	font-style: italic;
	font-weight: 300;
	font-size: 1.3rem;
	line-height: 1.65;
	color: var(--indigo-mid);
}

.entry-content blockquote cite {
	display: block;
	margin-top: .75rem;
	font-size: .75rem;
	font-style: normal;
	font-family: 'Instrument Sans', sans-serif;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--smoke);
}

.entry-content ul, .entry-content ol {
	margin: 0 0 1.5rem 1.25rem;
	list-style: revert;
}

.entry-content li { margin-bottom: .4rem; }

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 2rem 0;
	font-size: .9rem;
}

.entry-content th, .entry-content td {
	padding: .65rem 1rem;
	border: 1px solid var(--mist);
	text-align: left;
}

.entry-content th {
	background: var(--mist);
	font-weight: 500;
	font-size: .72rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--ink);
}

.entry-content code {
	font-family: 'Courier New', monospace;
	font-size: .85em;
	background: var(--mist);
	padding: .1em .35em;
	border-radius: 2px;
	color: var(--ink);
}

.entry-content pre {
	background: var(--ink);
	color: var(--parchment);
	padding: 1.5rem;
	border-radius: var(--radius-sm);
	overflow-x: auto;
	margin: 2rem 0;
	font-size: .82rem;
	line-height: 1.65;
}

.entry-content pre code {
	background: none;
	padding: 0;
	color: inherit;
}

/* WordPress image alignment */
.entry-content .alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.entry-content .alignright { float: right; margin: 0 0 1rem 1.5rem; }
.entry-content .aligncenter { display: block; margin: 1.5rem auto; text-align: center; }
.entry-content .alignwide { max-width: calc(var(--reading-max) + 8rem); margin-left: auto; margin-right: auto; }
.entry-content .alignfull { max-width: none; width: 100vw; margin-left: calc(50% - 50vw); }

/* WP caption */
.entry-content .wp-caption { margin: 2rem auto; max-width: 100%; }
.entry-content .wp-caption img { display: block; }
.entry-content .wp-caption-text {
	font-size: .75rem;
	letter-spacing: .08em;
	color: var(--smoke);
	text-align: center;
	margin-top: .5rem;
}

/* Gallery */
.entry-content .gallery {
	display: grid;
	gap: .75rem;
	margin: 2rem 0;
}
.entry-content .gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.entry-content .gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.entry-content .gallery-item img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); }

/* HR */
.entry-content hr {
	border: none;
	border-top: 1px solid var(--mist);
	margin: 2.5rem auto;
	width: 40%;
}

/* ==========================================================================
   12. AUTHOR BOX
   ========================================================================== */

.author-box {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	padding: 1.75rem;
	border: 1px solid var(--mist);
	border-radius: var(--radius-sm);
	margin: 3rem 0 2.5rem;
	background: var(--white);
}

.author-box-avatar {
	flex-shrink: 0;
	width: 64px; height: 64px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--gold-wash);
}

.author-box-body { flex: 1; }

.author-box-name {
	font-size: .7rem;
	font-weight: 400;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--aged-gold);
	margin-bottom: .25rem;
	display: block;
}

.author-box-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.05rem;
	color: var(--ink);
	margin-bottom: .6rem;
}

.author-box-bio { font-size: .875rem; color: var(--smoke); line-height: 1.7; margin: 0; }

/* ==========================================================================
   13. POST NAVIGATION (single)
   ========================================================================== */

.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin: 3rem 0 2.5rem;
}

.post-nav-card {
	padding: 1.25rem;
	border: 1px solid var(--mist);
	border-radius: var(--radius-sm);
	background: var(--white);
	transition: border-color .25s, box-shadow .25s;
}

.post-nav-card:hover {
	border-color: var(--aged-gold);
	box-shadow: 0 4px 16px rgba(15,23,42,.07);
}

.post-nav-label {
	font-size: .58rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--smoke);
	margin-bottom: .4rem;
	display: block;
}

.post-nav-title {
	font-family: 'Playfair Display', serif;
	font-size: .9rem;
	line-height: 1.35;
	color: var(--ink);
}

.post-nav-card.nav-next { text-align: right; }

/* ==========================================================================
   14. BOOKING CTA BAND
   ========================================================================== */

.booking-cta {
	background: linear-gradient(135deg, var(--indigo-mid), var(--deep));
	padding: 4rem 1.25rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.booking-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(184,150,90,.1), transparent);
	pointer-events: none;
}

.booking-cta .eyebrow { color: rgba(184,150,90,.7); margin-bottom: .75rem; }

.booking-cta h2 {
	font-family: 'Playfair Display', serif;
	font-weight: 300;
	font-size: clamp(1.5rem, 4vw, 2.2rem);
	color: var(--white);
	margin-bottom: .75rem;
}

.booking-cta p {
	font-family: 'Cormorant', serif;
	font-style: italic;
	color: rgba(255,255,255,.6);
	font-size: 1.05rem;
	margin-bottom: 2rem;
}

.btn-book-cta {
	display: inline-block;
	font-size: .65rem;
	font-weight: 500;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--ink);
	background: var(--aged-gold);
	padding: .9rem 2.25rem;
	border-radius: var(--radius-sm);
	transition: background .25s, transform .15s;
}

.btn-book-cta:hover {
	background: var(--accent);
	transform: translateY(-2px);
	color: var(--ink);
}

/* ==========================================================================
   15. SIDEBAR
   ========================================================================== */

.sidebar { /* layout via parent grid */ }

.widget {
	background: var(--white);
	border: 1px solid var(--mist);
	border-radius: var(--radius-sm);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.widget-title {
	font-size: .62rem;
	font-weight: 400;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--aged-gold);
	margin-bottom: 1rem;
	padding-bottom: .75rem;
	border-bottom: 1px solid var(--mist);
}

.widget ul li {
	padding: .5rem 0;
	border-bottom: 1px solid var(--mist);
	font-size: .875rem;
	color: var(--smoke);
}

.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--text-body); transition: color .2s; }
.widget ul li a:hover { color: var(--aged-gold); }

/* Tag cloud */
.widget .tagcloud {
	display: flex;
	flex-wrap: wrap;
	gap: .4rem;
}

.widget .tagcloud a {
	font-size: .62rem !important;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--text-body);
	background: var(--parchment);
	border: 1px solid var(--mist);
	padding: .3rem .7rem;
	border-radius: var(--radius-pill);
	transition: background .2s, border-color .2s, color .2s;
}

.widget .tagcloud a:hover {
	background: var(--gold-wash);
	border-color: var(--aged-gold);
	color: var(--ink);
}

/* Category list gold pills */
.widget.widget_categories ul li a {
	color: var(--text-body);
}

.widget.widget_categories ul li:hover a { color: var(--aged-gold); }

/* Sidebar booking card */
.sidebar-booking {
	background: linear-gradient(160deg, var(--indigo-mid), var(--deep));
	border: none;
	text-align: center;
}

.sidebar-booking .widget-title { color: rgba(255,255,255,.5); border-bottom-color: rgba(255,255,255,.1); }

.sidebar-booking p {
	font-family: 'Cormorant', serif;
	font-style: italic;
	font-size: 1rem;
	color: rgba(255,255,255,.7);
	margin-bottom: 1.25rem;
}

.sidebar-booking .btn-sidebar-book {
	display: block;
	text-align: center;
	font-size: .62rem;
	font-weight: 500;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--ink);
	background: var(--aged-gold);
	padding: .75rem;
	border-radius: var(--radius-sm);
	transition: background .2s;
}
.sidebar-booking .btn-sidebar-book:hover { background: var(--accent); color: var(--ink); }

/* ==========================================================================
   16. COMMENTS
   ========================================================================== */

.comments-area {
	max-width: var(--reading-max);
	margin: 0 auto 4rem;
	padding: 0 1.25rem;
}

.comments-title {
	font-size: .62rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--aged-gold);
	margin-bottom: 1.5rem;
	padding-bottom: .75rem;
	border-bottom: 1px solid var(--mist);
}

.comment-list { margin-bottom: 2rem; }

.comment {
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--mist);
}

.comment:last-child { border-bottom: none; }

.comment-meta {
	display: flex;
	align-items: center;
	gap: .75rem;
	margin-bottom: .75rem;
}

.comment-author .avatar {
	width: 36px; height: 36px;
	border-radius: 50%;
}

.comment-author-name {
	font-weight: 500;
	font-size: .875rem;
	color: var(--ink);
}

.comment-date {
	font-size: .65rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--smoke);
}

.comment-body p { font-size: .9rem; margin: 0; }

/* Comment form */
.comment-respond {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--mist);
}

.comment-reply-title {
	font-size: .62rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--aged-gold);
	margin-bottom: 1.5rem;
}

.comment-form label {
	display: block;
	font-size: .65rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--ink);
	margin-bottom: .4rem;
	font-weight: 400;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	background: var(--parchment);
	border: 1px solid var(--mist);
	border-radius: var(--radius-sm);
	padding: .65rem .9rem;
	color: var(--ink);
	font-size: .9rem;
	transition: border-color .2s;
	margin-bottom: 1.1rem;
}

.comment-form input:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: var(--aged-gold);
}

.comment-form textarea { min-height: 120px; resize: vertical; }

.comment-form input[type="submit"] {
	display: inline-block;
	font-size: .65rem;
	font-weight: 500;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--ink);
	background: var(--aged-gold);
	border: none;
	padding: .8rem 2rem;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: background .25s;
}

.comment-form input[type="submit"]:hover { background: var(--accent); }

/* ==========================================================================
   17. ARCHIVE / SEARCH / 404 HEADERS
   ========================================================================== */

.archive-header, .search-header {
	padding: calc(var(--nav-h) + 3rem) 1.25rem 2.5rem;
	background: var(--deep);
	text-align: center;
	position: relative;
}

.archive-header::before, .search-header::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(184,150,90,.1), transparent);
	pointer-events: none;
}

.archive-header h1, .search-header h1 {
	color: var(--white);
	font-size: clamp(1.6rem, 4vw, 2.5rem);
}

.archive-header h1 em, .search-header h1 em { color: var(--aged-gold); font-style: italic; }

.archive-description {
	font-family: 'Cormorant', serif;
	font-style: italic;
	font-size: 1.05rem;
	color: rgba(255,255,255,.55);
	margin-top: .75rem;
}

/* 404 */
.error-404-section {
	padding: calc(var(--nav-h) + 5rem) 1.25rem 5rem;
	text-align: center;
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.error-404-inner { max-width: 520px; }

.error-404-inner .eyebrow { margin-bottom: 1rem; }

.error-404-inner h1 {
	font-size: clamp(1.8rem, 5vw, 3rem);
	color: var(--ink);
	margin-bottom: 1rem;
}

.error-404-inner p { color: var(--smoke); margin-bottom: 2rem; }

/* ==========================================================================
   18. SEARCH FORM
   ========================================================================== */

.search-form {
	display: flex;
	max-width: 480px;
	margin: 0 auto;
}

.search-form .search-field {
	flex: 1;
	padding: .7rem 1rem;
	border: 1px solid var(--mist);
	border-right: none;
	border-radius: var(--radius-sm) 0 0 var(--radius-sm);
	background: var(--white);
	color: var(--ink);
	font-size: .9rem;
}

.search-form .search-field:focus {
	outline: none;
	border-color: var(--aged-gold);
}

.search-form .search-submit {
	background: var(--aged-gold);
	color: var(--ink);
	border: none;
	padding: .7rem 1.1rem;
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-size: .7rem;
	font-weight: 500;
	letter-spacing: .14em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .2s;
	white-space: nowrap;
}

.search-form .search-submit:hover { background: var(--accent); }

/* ==========================================================================
   19. FOOTER
   ========================================================================== */

.site-footer {
	background: #080706;
	color: rgba(255,255,255,.55);
	padding: 4rem 1.25rem 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	padding-bottom: 3rem;
}

.footer-brand .logo-text { color: var(--white); font-size: .8rem; }
.footer-brand .logo-text .house { color: var(--aged-gold); }

.footer-tagline {
	font-family: 'Cormorant', serif;
	font-style: italic;
	font-size: .95rem;
	color: rgba(255,255,255,.45);
	margin: .75rem 0 1.25rem;
	line-height: 1.55;
}

.footer-social {
	display: flex;
	gap: .5rem;
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px; height: 36px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--radius-sm);
	color: rgba(255,255,255,.5);
	font-size: .75rem;
	transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--aged-gold); color: var(--aged-gold); }

.footer-col-title {
	font-size: .6rem;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--aged-gold);
	margin-bottom: 1rem;
	padding-bottom: .5rem;
	border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-nav ul li { margin-bottom: .5rem; }
.footer-nav a {
	font-size: .8rem;
	color: rgba(255,255,255,.5);
	transition: color .2s;
}
.footer-nav a:hover { color: var(--aged-gold); }

.footer-contact p, .footer-address p {
	font-size: .8rem;
	line-height: 1.75;
	margin: 0;
}

.footer-contact a, .footer-address a { color: rgba(255,255,255,.55); }
.footer-contact a:hover, .footer-address a:hover { color: var(--aged-gold); }

.footer-bar {
	border-top: 1px solid rgba(255,255,255,.07);
	padding: 1.25rem 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	font-size: .65rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255,255,255,.3);
}

.footer-bar a { color: rgba(255,255,255,.35); }
.footer-bar a:hover { color: var(--aged-gold); }

.footer-legal { display: flex; gap: 1.5rem; }

/* ==========================================================================
   20. SKIP LINK / ACCESSIBILITY
   ========================================================================== */

.skip-link {
	position: absolute;
	top: -100%;
	left: 1rem;
	z-index: 9999;
	background: var(--aged-gold);
	color: var(--ink);
	padding: .5rem 1rem;
	font-size: .8rem;
	font-weight: 500;
	transition: top .2s;
}

.skip-link:focus { top: .5rem; }

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

/* ==========================================================================
   21. REVEAL ANIMATIONS
   ========================================================================== */

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .5s ease, transform .5s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .01ms !important;
		transition-duration: .01ms !important;
	}
	.reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   22. WORDPRESS CORE CLASS COMPATIBILITY
   ========================================================================== */

.sticky > .post-card { border-left: 2px solid var(--aged-gold); }

.bypostauthor .comment-author-name::after {
	content: ' (Author)';
	font-size: .65rem;
	color: var(--aged-gold);
	font-weight: 400;
}

/* ==========================================================================
   23. RESPONSIVE — MOBILE FIRST
   ========================================================================== */

/* 480px — meta rows inline */
@media (min-width: 480px) {
	.post-meta-row { justify-content: center; }
	.featured-post-footer { flex-direction: row; }

	/* Compact pagination on small — hide middle numbers */
	.indigo-pagination .page-numbers:not(.prev):not(.next):not(.current):not(.dots) {
		display: none;
	}
}

/* 640px — 2-col grid, 2-col footer */
@media (min-width: 640px) {
	.posts-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: repeat(2, 1fr); }
	.featured-post-body { padding: 2.5rem; }
}

/* 768px — type scale up on single */
@media (min-width: 768px) {
	.single-post-wrap { padding: 4rem 1.25rem 5rem; }
	.entry-content { font-size: 1.05rem; }
	.comments-area { padding: 0; }

	/* Show all pagination numbers */
	.indigo-pagination .page-numbers:not(.prev):not(.next):not(.current):not(.dots) {
		display: inline-flex;
	}
}

/* 900px — desktop nav, sidebar, footer 4-col */
@media (min-width: 900px) {
	.nav-center { display: flex; }
	.nav-book { display: block; }
	.nav-hamburger { display: none; }

	.content-sidebar-wrap {
		grid-template-columns: 1fr 300px;
	}

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

	.booking-cta { padding: 5.5rem 1.25rem; }
}

/* 1200px — wider container */
@media (min-width: 1200px) {
	.site-container { padding: 0 2rem; }
	.nav-inner { padding: 0 2rem; }
	.posts-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   24. PRINT
   ========================================================================== */

@media print {
	.site-header, .site-footer, .sidebar, .booking-cta,
	.post-navigation, .comments-area, .nav-drawer, .nav-overlay { display: none; }
	body { font-size: 12pt; color: #000; }
	.single-post-wrap { padding: 0; }
	.entry-content { max-width: none; }
	a::after { content: " (" attr(href) ")"; font-size: .75em; }
}
