/* =========================================================
   WB Travel Luxe — Premium Luxury Travel Theme
   Palette: Deep Navy + Champagne Gold + Emerald Accent
   ========================================================= */

:root {
	--navy:        #0A1F3D;
	--navy-deep:   #050F22;
	--navy-soft:   #1A3358;
	--gold:        #C9A961;
	--gold-light:  #E0C896;
	--gold-deep:   #A88842;
	--emerald:     #1F5F4A;
	--emerald-light:#2E7E63;
	--ivory:       #FAF7F2;
	--cream:       #F3EEE4;
	--sand:        #E8DFCF;
	--charcoal:    #1A1A1A;
	--ink:         #2A2A2A;
	--muted:       #6B6B6B;
	--line:        rgba(201, 169, 97, 0.25);
	--line-dark:   rgba(10, 31, 61, 0.12);

	--font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
	--font-accent:  'Italiana', 'Cormorant Garamond', serif;
	--font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	--container: 1320px;
	--container-narrow: 980px;

	--radius: 2px;
	--radius-card: 4px;

	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

	--shadow-card: 0 20px 60px -20px rgba(10, 31, 61, 0.18);
	--shadow-deep: 0 40px 100px -30px rgba(10, 31, 61, 0.35);
}

/* =========================================================
   Reset & base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.7;
	color: var(--ink);
	background: var(--ivory);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--navy); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--gold-deep); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 500;
	color: var(--navy);
	letter-spacing: -0.01em;
	line-height: 1.15;
	margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.6rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1.2em; }

/* =========================================================
   Utility
   ========================================================= */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 28px; }

.eyebrow {
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--gold-deep);
	margin: 0 0 1.2em;
	display: inline-block;
}

.script {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	color: var(--gold-deep);
}

.divider-gold {
	display: block;
	width: 60px;
	height: 1px;
	background: var(--gold);
	margin: 1.5em 0;
}
.divider-gold.center { margin: 1.5em auto; }

.section { padding: clamp(64px, 9vw, 130px) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-navy { background: var(--navy); color: var(--ivory); }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: var(--ivory); }
.section-navy .eyebrow { color: var(--gold-light); }
.section-cream { background: var(--cream); }
.section-ivory { background: var(--ivory); }

.text-center { text-align: center; }
.section-header { max-width: 780px; margin: 0 auto 64px; text-align: center; }
.section-header p { color: var(--muted); font-size: 1.05rem; }
.section-navy .section-header p { color: rgba(250, 247, 242, 0.75); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6em;
	padding: 16px 36px;
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	border: 1px solid transparent;
	border-radius: var(--radius);
	cursor: pointer;
	transition: all .35s var(--ease);
	white-space: nowrap;
	background: transparent;
	color: var(--navy);
}

.btn-primary {
	background: var(--gold);
	color: var(--navy);
	border-color: var(--gold);
}
.btn-primary:hover {
	background: var(--gold-deep);
	border-color: var(--gold-deep);
	color: var(--ivory);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px -10px rgba(201, 169, 97, 0.6);
}

.btn-outline {
	border-color: var(--navy);
	color: var(--navy);
}
.btn-outline:hover {
	background: var(--navy);
	color: var(--ivory);
}

.btn-outline-light {
	border-color: var(--gold-light);
	color: var(--ivory);
}
.btn-outline-light:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--navy);
}

.btn-ghost {
	color: var(--gold-deep);
	padding: 8px 0;
	letter-spacing: 0.22em;
	border-bottom: 1px solid var(--gold);
	border-radius: 0;
}
.btn-ghost:hover {
	color: var(--navy);
	border-bottom-color: var(--navy);
}

.btn-sm { padding: 12px 26px; font-size: 0.7rem; }

/* =========================================================
   Header & Navigation
   ========================================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--ivory);
	border-bottom: 1px solid var(--line-dark);
	transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
	background: rgba(250, 247, 242, 0.96);
	backdrop-filter: saturate(180%) blur(12px);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	box-shadow: 0 4px 20px rgba(10, 31, 61, 0.06);
}

.topbar {
	background: var(--navy);
	color: var(--ivory);
	font-size: 0.75rem;
	letter-spacing: 0.1em;
}
.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
	gap: 20px;
	flex-wrap: wrap;
}
.topbar a { color: var(--ivory); }
.topbar a:hover { color: var(--gold-light); }
.topbar-left { display: flex; gap: 28px; align-items: center; }
.topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar-tag { color: var(--gold-light); }

.header-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 22px 28px;
	gap: 30px;
	max-width: var(--container);
	margin: 0 auto;
}

.site-logo {
	justify-self: start;
	display: flex;
	align-items: center;
	gap: 14px;
}
.site-logo img,
.site-logo .custom-logo,
.site-logo-wrap .custom-logo { max-height: 56px; width: auto; height: auto; display: block; }
.site-logo .custom-logo-link { display: inline-flex; align-items: center; line-height: 0; }
@media (max-width: 782px) {
	.site-logo img,
	.site-logo .custom-logo,
	.site-logo-wrap .custom-logo { max-height: 40px; }
}
.site-logo-text {
	font-family: var(--font-accent);
	font-size: 1.6rem;
	letter-spacing: 0.04em;
	color: var(--navy);
	line-height: 1;
}
.site-logo-text small {
	display: block;
	font-family: var(--font-body);
	font-size: 0.62rem;
	letter-spacing: 0.4em;
	color: var(--gold-deep);
	margin-top: 4px;
	text-transform: uppercase;
}

.primary-nav {
	justify-self: center;
}
.primary-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 36px;
	align-items: center;
}
.primary-nav a {
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--navy);
	padding: 8px 0;
	position: relative;
}
.primary-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 1px;
	background: var(--gold);
	transition: width .3s var(--ease);
}
.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after { width: 100%; }
.primary-nav a:hover { color: var(--gold-deep); }

.header-cta { justify-self: end; }

.menu-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--navy);
	cursor: pointer;
	padding: 8px;
}
.menu-toggle svg { width: 28px; height: 28px; }

@media (max-width: 980px) {
	.header-inner { grid-template-columns: auto 1fr auto; }
	.menu-toggle { display: block; justify-self: end; }
	.primary-nav, .header-cta { display: none; }
	.primary-nav.is-open {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--ivory);
		padding: 32px;
		border-top: 1px solid var(--line-dark);
	}
	.primary-nav.is-open ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
	position: relative;
	min-height: 86vh;
	display: flex;
	align-items: center;
	color: var(--ivory);
	overflow: hidden;
	background: var(--navy-deep);
}
.hero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.hero-media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(5, 15, 34, 0.55) 0%, rgba(5, 15, 34, 0.35) 40%, rgba(5, 15, 34, 0.85) 100%);
}
.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 80px 28px;
}
.hero-eyebrow {
	color: var(--gold-light);
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	margin: 0 0 28px;
	display: flex;
	align-items: center;
	gap: 18px;
}
.hero-eyebrow::before {
	content: '';
	display: inline-block;
	width: 40px;
	height: 1px;
	background: var(--gold);
}
.hero-title {
	font-family: var(--font-display);
	font-weight: 300;
	font-size: clamp(3rem, 7.5vw, 6.4rem);
	line-height: 1.02;
	letter-spacing: -0.015em;
	color: var(--ivory);
	max-width: 14ch;
	margin: 0 0 32px;
}
.hero-title em {
	font-style: italic;
	color: var(--gold-light);
	font-weight: 300;
}
.hero-sub {
	font-size: 1.15rem;
	max-width: 540px;
	color: rgba(250, 247, 242, 0.85);
	margin: 0 0 44px;
	line-height: 1.65;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Page hero (interior pages) */
.page-hero {
	position: relative;
	padding: 140px 0 100px;
	background: var(--navy);
	color: var(--ivory);
	overflow: hidden;
}
.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C9A961' stroke-width='0.5' opacity='0.08'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30 Z'/%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.4;
}
.page-hero-inner { position: relative; text-align: center; }
.page-hero h1 { color: var(--ivory); font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 300; margin: 0 0 12px; }
.page-hero .breadcrumbs {
	font-size: 0.75rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gold-light);
	margin: 0;
}
.page-hero .breadcrumbs a { color: var(--gold-light); }
.page-hero .breadcrumbs a:hover { color: var(--ivory); }
.page-hero .breadcrumbs span { margin: 0 12px; opacity: 0.5; }

/* =========================================================
   Tours / cards
   ========================================================= */
.tours-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
}

.tour-card {
	position: relative;
	background: var(--ivory);
	overflow: hidden;
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
	transition: transform .5s var(--ease), box-shadow .5s var(--ease);
	display: flex;
	flex-direction: column;
}
.tour-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-deep);
}
.tour-card-media {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
}
.tour-card-media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1s var(--ease);
}
.tour-card:hover .tour-card-media img { transform: scale(1.06); }
.tour-card-media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(10, 31, 61, 0.7) 100%);
}
.tour-card-destination {
	position: absolute;
	top: 24px;
	left: 24px;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.6rem;
	color: var(--ivory);
	z-index: 2;
	text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.tour-card-price-badge {
	position: absolute;
	top: 24px;
	right: 24px;
	background: var(--gold);
	color: var(--navy);
	padding: 8px 14px;
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 600;
	z-index: 2;
}
.tour-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.tour-card-meta {
	font-size: 0.7rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--gold-deep);
	margin: 0 0 12px;
}
.tour-card-title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 500;
	margin: 0 0 16px;
	color: var(--navy);
	line-height: 1.2;
}
.tour-card-title a { color: inherit; }
.tour-card-title a:hover { color: var(--gold-deep); }
.tour-card-excerpt {
	color: var(--muted);
	font-size: 0.95rem;
	margin: 0 0 24px;
	flex: 1;
}
.tour-card-foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 18px;
	border-top: 1px solid var(--line);
}
.tour-card-price {
	font-family: var(--font-display);
	font-size: 1.4rem;
	color: var(--navy);
}
.tour-card-price small {
	font-family: var(--font-body);
	font-size: 0.7rem;
	color: var(--muted);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	display: block;
}

/* =========================================================
   About / split sections
   ========================================================= */
.split {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 80px;
	align-items: center;
}
.split.reverse { grid-template-columns: 1fr 1.05fr; }
.split.reverse .split-media { order: 2; }
.split-media {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: var(--radius-card);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media::before {
	content: '';
	position: absolute;
	inset: 18px;
	border: 1px solid var(--gold);
	z-index: 2;
	pointer-events: none;
}
.split-content h2 { margin-top: 0; }
.split-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid var(--line);
}
.split-stat-num {
	font-family: var(--font-display);
	font-size: 2.6rem;
	color: var(--gold-deep);
	line-height: 1;
	display: block;
	margin-bottom: 8px;
}
.split-stat-label {
	font-size: 0.7rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--muted);
}

@media (max-width: 880px) {
	.split, .split.reverse { grid-template-columns: 1fr; gap: 48px; }
	.split.reverse .split-media { order: 0; }
}

/* =========================================================
   Testimonials
   ========================================================= */
.testimonials {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
}
.testimonial {
	padding: 44px 36px;
	background: rgba(250, 247, 242, 0.04);
	border: 1px solid rgba(201, 169, 97, 0.2);
	position: relative;
}
.section-cream .testimonial { background: var(--ivory); border-color: var(--line); }
.testimonial-stars {
	color: var(--gold);
	font-size: 0.9rem;
	letter-spacing: 0.15em;
	margin-bottom: 20px;
}
.testimonial-quote {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.15rem;
	line-height: 1.55;
	color: var(--ivory);
	margin: 0 0 28px;
}
.section-cream .testimonial-quote { color: var(--navy); }
.testimonial-author {
	font-size: 0.72rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--gold-light);
	font-weight: 500;
}
.section-cream .testimonial-author { color: var(--gold-deep); }

/* =========================================================
   Vendor partners row
   ========================================================= */
.partners {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 40px;
	align-items: center;
	padding: 50px 0;
}
.partner-logo {
	text-align: center;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.4rem;
	color: var(--muted);
	letter-spacing: 0.04em;
	opacity: 0.7;
	transition: opacity .3s var(--ease), color .3s var(--ease);
}
.partner-logo:hover { opacity: 1; color: var(--navy); }
.section-navy .partner-logo { color: var(--gold-light); opacity: 0.7; }
.section-navy .partner-logo:hover { color: var(--gold); opacity: 1; }

/* =========================================================
   Promotions
   ========================================================= */
.promo-filters {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 56px;
}
.promo-filter {
	background: transparent;
	border: 1px solid var(--line);
	color: var(--navy);
	padding: 12px 26px;
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all .3s var(--ease);
	border-radius: var(--radius);
}
.promo-filter:hover, .promo-filter.is-active {
	background: var(--navy);
	border-color: var(--navy);
	color: var(--gold-light);
}

.promo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 36px;
}
.promo-card {
	background: var(--ivory);
	border: 1px solid var(--line);
	border-radius: var(--radius-card);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: all .4s var(--ease);
}
.promo-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-card);
	border-color: var(--gold);
}
.promo-card-media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--navy);
}
.promo-card-media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .8s var(--ease);
}
.promo-card:hover .promo-card-media img { transform: scale(1.04); }
.promo-card-tag {
	position: absolute;
	top: 18px;
	left: 18px;
	background: var(--emerald);
	color: var(--ivory);
	padding: 6px 14px;
	font-size: 0.68rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 600;
}
.promo-card-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.promo-card-partner {
	font-size: 0.7rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gold-deep);
	margin: 0 0 10px;
}
.promo-card-headline {
	font-family: var(--font-display);
	font-size: 1.7rem;
	font-weight: 500;
	color: var(--navy);
	margin: 0 0 18px;
	line-height: 1.2;
}
.promo-card-perks {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
}
.promo-card-perks li {
	padding: 8px 0 8px 26px;
	position: relative;
	font-size: 0.95rem;
	color: var(--ink);
	border-bottom: 1px dashed var(--line);
}
.promo-card-perks li:last-child { border-bottom: none; }
.promo-card-perks li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 16px;
	width: 14px;
	height: 1px;
	background: var(--gold);
}
.promo-card-foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid var(--line);
	margin-top: auto;
}
.promo-card-expires {
	font-size: 0.72rem;
	color: var(--muted);
	letter-spacing: 0.1em;
}
.promo-card-expires strong { color: var(--emerald); font-weight: 500; }

/* =========================================================
   Blog (magazine layout)
   ========================================================= */
.blog-featured {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 48px;
	margin-bottom: 80px;
}
.blog-featured-media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: var(--radius-card);
}
.blog-featured-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured-content { display: flex; flex-direction: column; justify-content: center; }
.blog-featured-content h2 {
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	margin: 16px 0 20px;
}
.blog-featured-content h2 a { color: inherit; }
.blog-featured-content h2 a:hover { color: var(--gold-deep); }

.blog-meta {
	font-size: 0.72rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--gold-deep);
	display: flex;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
}
.blog-meta a { color: inherit; }
.blog-meta span.dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; display: inline-block; }

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 48px;
}
.post-card { display: flex; flex-direction: column; }
.post-card-media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	margin-bottom: 24px;
	border-radius: var(--radius-card);
}
.post-card-media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .8s var(--ease);
}
.post-card:hover .post-card-media img { transform: scale(1.04); }
.post-card-title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 500;
	margin: 14px 0 14px;
	line-height: 1.25;
}
.post-card-title a { color: var(--navy); }
.post-card-title a:hover { color: var(--gold-deep); }
.post-card-excerpt { color: var(--muted); font-size: 0.95rem; margin: 0 0 18px; }
.post-card-readmore {
	font-size: 0.72rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--gold-deep);
	font-weight: 500;
	border-bottom: 1px solid var(--gold);
	padding-bottom: 4px;
	align-self: flex-start;
}
.post-card-readmore:hover { color: var(--navy); border-color: var(--navy); }

@media (max-width: 880px) {
	.blog-featured { grid-template-columns: 1fr; }
}

/* Single post */
.single-post-content {
	max-width: 760px;
	margin: 0 auto;
	font-size: 1.1rem;
	line-height: 1.8;
}
.single-post-content h2 { margin-top: 1.6em; }
.single-post-content h3 { margin-top: 1.4em; }
.single-post-content blockquote {
	border-left: 3px solid var(--gold);
	padding: 8px 0 8px 28px;
	margin: 32px 0;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.4rem;
	color: var(--navy);
}
.single-post-content figure { margin: 36px 0; }
.single-post-content figcaption { font-size: 0.85rem; color: var(--muted); text-align: center; margin-top: 12px; font-style: italic; }
.single-post-content a {
	color: var(--gold-deep);
	border-bottom: 1px solid var(--gold);
}
.single-post-content a:hover { color: var(--navy); border-color: var(--navy); }

/* =========================================================
   Portfolio (client trips gallery, masonry)
   ========================================================= */
.portfolio-filters {
	display: flex;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 56px;
}
.portfolio-filter {
	background: transparent;
	border: 1px solid var(--line);
	color: var(--navy);
	padding: 10px 22px;
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all .3s var(--ease);
	border-radius: var(--radius);
}
.portfolio-filter:hover, .portfolio-filter.is-active {
	background: var(--emerald);
	border-color: var(--emerald);
	color: var(--ivory);
}

.portfolio-grid {
	column-count: 3;
	column-gap: 20px;
}
@media (max-width: 880px) { .portfolio-grid { column-count: 2; } }
@media (max-width: 540px) { .portfolio-grid { column-count: 1; } }

.portfolio-item {
	break-inside: avoid;
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-card);
	cursor: pointer;
	display: block;
}
.portfolio-item img {
	width: 100%;
	height: auto;
	transition: transform .8s var(--ease);
}
.portfolio-item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(10,31,61,0.85) 100%);
	opacity: 0;
	transition: opacity .4s var(--ease);
}
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-item:hover::after { opacity: 1; }
.portfolio-caption {
	position: absolute;
	bottom: 24px;
	left: 24px;
	right: 24px;
	color: var(--ivory);
	z-index: 2;
	opacity: 0;
	transform: translateY(10px);
	transition: all .4s var(--ease);
}
.portfolio-item:hover .portfolio-caption { opacity: 1; transform: translateY(0); }
.portfolio-caption-destination {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.4rem;
	color: var(--gold-light);
	margin: 0 0 4px;
}
.portfolio-caption-trip {
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

/* Lightbox */
.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(5, 15, 34, 0.95);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 80vh; object-fit: contain; }
.lightbox-close {
	position: absolute;
	top: 30px;
	right: 30px;
	background: none;
	border: 1px solid var(--gold);
	color: var(--ivory);
	width: 48px; height: 48px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.4rem;
	line-height: 1;
}
.lightbox-caption {
	position: absolute;
	bottom: 40px;
	left: 0; right: 0;
	text-align: center;
	color: var(--gold-light);
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.2rem;
}

/* =========================================================
   Forms
   ========================================================= */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 64px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-info p { margin-bottom: 24px; }
.contact-info-block {
	padding: 20px 0;
	border-bottom: 1px solid var(--line);
}
.contact-info-label {
	font-size: 0.7rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--gold-deep);
	margin: 0 0 6px;
}
.contact-info-value {
	font-family: var(--font-display);
	font-size: 1.3rem;
	color: var(--navy);
}

.form-row { margin-bottom: 24px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 540px) { .form-row.two { grid-template-columns: 1fr; } }
.form-row label {
	display: block;
	font-size: 0.7rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold-deep);
	margin-bottom: 8px;
	font-weight: 500;
}
.form-row input,
.form-row textarea,
.form-row select {
	width: 100%;
	padding: 14px 16px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	background: var(--ivory);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: var(--ink);
	transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

/* =========================================================
   Newsletter (replaces purple bar)
   ========================================================= */
.newsletter {
	background: var(--navy);
	color: var(--ivory);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}
.newsletter::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.12) 0%, transparent 50%),
	                  radial-gradient(circle at 80% 20%, rgba(31, 95, 74, 0.15) 0%, transparent 50%);
}
.newsletter-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 28px;
}
.newsletter h2 { color: var(--ivory); margin: 0 0 12px; }
.newsletter p { color: rgba(250, 247, 242, 0.75); margin: 0; }
.newsletter-form,
.newsletter-form-wrap .mc4wp-form-fields,
.newsletter-form-wrap form { display: flex; gap: 12px; flex-wrap: wrap; align-items: stretch; }
.newsletter-form input[type="email"],
.newsletter-form input[type="text"],
.newsletter-form-wrap input[type="email"],
.newsletter-form-wrap input[type="text"] {
	flex: 1;
	min-width: 200px;
	padding: 16px 20px;
	background: rgba(250, 247, 242, 0.08);
	border: 1px solid rgba(201, 169, 97, 0.3);
	color: var(--ivory);
	font-family: var(--font-body);
	font-size: 1rem;
	border-radius: var(--radius);
}
.newsletter-form input::placeholder,
.newsletter-form-wrap input::placeholder { color: rgba(250, 247, 242, 0.5); }
.newsletter-form input:focus,
.newsletter-form-wrap input:focus { outline: none; border-color: var(--gold); }
.newsletter-form-wrap input[type="submit"],
.newsletter-form-wrap button[type="submit"] {
	display: inline-block;
	padding: 16px 32px;
	background: var(--gold);
	color: var(--navy);
	border: 0;
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease;
}
.newsletter-form-wrap input[type="submit"]:hover,
.newsletter-form-wrap button[type="submit"]:hover { background: var(--gold-deep); }
.newsletter-form-wrap .mc4wp-response { width: 100%; margin-top: 12px; color: rgba(250, 247, 242, 0.85); font-size: 0.95rem; }
.newsletter-form-wrap .mc4wp-alert { padding: 10px 14px; border-radius: var(--radius); background: rgba(250, 247, 242, 0.06); border: 1px solid rgba(201, 169, 97, 0.3); }
.newsletter-form-wrap label { color: rgba(250, 247, 242, 0.85); font-size: 0.9rem; }
@media (max-width: 880px) {
	.newsletter-inner { grid-template-columns: 1fr; }
	.newsletter-form,
	.newsletter-form-wrap .mc4wp-form-fields,
	.newsletter-form-wrap form { flex-direction: column; }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
	background: var(--navy-deep);
	color: rgba(250, 247, 242, 0.7);
	padding: 80px 0 30px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 60px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .site-logo-text { color: var(--ivory); }
.footer-brand .site-logo-text small { color: var(--gold-light); }
.footer-brand p { margin-top: 20px; font-size: 0.95rem; }

.footer-widget-title,
.footer-grid h4 {
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--gold-light);
	margin: 0 0 24px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 12px; font-size: 0.95rem; }
.footer-grid a { color: rgba(250, 247, 242, 0.7); }
.footer-grid a:hover { color: var(--gold-light); }

.footer-bottom {
	padding-top: 30px;
	border-top: 1px solid rgba(201, 169, 97, 0.15);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 0.8rem;
	letter-spacing: 0.1em;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
	width: 38px; height: 38px;
	border: 1px solid rgba(201, 169, 97, 0.3);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-light);
	transition: all .3s var(--ease);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }

/* =========================================================
   WordPress core required classes
   ========================================================= */
.alignleft { float: left; margin-right: 1.5em; margin-bottom: 1em; }
.alignright { float: right; margin-left: 1.5em; margin-bottom: 1em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide { max-width: 1200px; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--muted); margin-top: 8px; text-align: center; font-style: italic; }
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}
.skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.skip-link:focus {
	position: fixed;
	top: 16px; left: 16px;
	width: auto; height: auto;
	background: var(--gold);
	color: var(--navy);
	padding: 12px 18px;
	z-index: 9999;
}
.bypostauthor, .sticky, .gallery-caption { /* required by WP */ }

.pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 64px;
}
.pagination a, .pagination span {
	padding: 10px 16px;
	border: 1px solid var(--line);
	color: var(--navy);
	font-size: 0.85rem;
	letter-spacing: 0.15em;
}
.pagination .current,
.pagination a:hover { background: var(--navy); color: var(--gold-light); border-color: var(--navy); }

/* =========================================================
   Animations
   ========================================================= */
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: translateY(0); }
}
.fade-up {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.fade-up.in-view {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	* { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
