/*
 * Ruthie Realty - Main Stylesheet (Haley Jones Inspired Minimal Design)
 * Clean, sophisticated, high-end real estate aesthetic
 */

/* ========================================
   CSS Variables - Brand Colors & Design Tokens
   ======================================== */

:root {
	/* Brand Color Palette - Your Existing Colors */
	--color-black: #000000;
	--color-off-white: #faf9f6;
	--color-white: #ffffff;
	--color-gold: #e6c982;
	--color-dark-gray: #333333;
	--color-gold-dark: #b88235;
	--color-charcoal: #313042;
	--color-charcoal-light: #3c3b44;
	--color-gold-medium: #c5a964;
	--color-gold-muted: #ad9955;
	--color-gold-bright: #d49f41;
	--color-gold-vibrant: #eeba2b;
	--color-gold-warm: #d5a42d;

	/* Semantic Colors */
	--color-primary: var(--color-gold-warm);
	--color-secondary: var(--color-charcoal);
	--color-text-main: var(--color-dark-gray);
	--color-text: var(--color-dark-gray);
	--color-text-light: var(--color-off-white);
	--color-bg-page: var(--color-white);
	--color-background: var(--color-white);
	--color-background-alt: var(--color-off-white);
	--color-accent: var(--color-gold);
	--color-surface-dark: var(--color-charcoal);

	/* Typography - Your Existing Fonts */
	--font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-display: 'League Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	/* Spacing - Haley Jones Inspired (More Generous) */
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 2rem;
	--spacing-lg: 5rem;
	--spacing-xl: 8rem;
	--spacing-xxl: 12rem;
	--spacing-xxxl: 16rem;

	/* Container */
	--container-max: 1200px;
	--container-padding: 2rem;

	/* Transitions - Smoother cubic-bezier curves */
	--transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-smooth: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--transition-bounce: 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);

	/* Z-index layers */
	--z-social-sidebar: 9999;
	--z-preloader: 10000;
	--z-mobile-menu: 999;
	--z-header: 1000;
	--z-video-overlay: 2;
	--z-hero-content: 3;
}

/* ========================================
   Reset & Base Styles
   ======================================== */

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

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

body {
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.7;
	color: var(--color-text);
	background-color: var(--color-background);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	padding-left: 0; /* No padding needed for floating sidebar */
}

@media (max-width: 768px) {
	body {
		padding-left: 0;
		padding-top: 0;
		padding-bottom: 0; /* No padding needed - sidebar is floating */
	}
}

/* ========================================
   LEFT SOCIAL SIDEBAR - Fixed to Viewport
   ======================================== */

.social-sidebar {
	position: fixed;
	left: calc((100vw - 1440px) / 2 - 31.5px);
	top: 40%;
	transform: translateY(-50%);
	width: 63px;
	background-color: #000000;
	border-radius: 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: var(--z-social-sidebar);
	transition: all var(--transition-base);
	padding: 1.125rem 0;
}

@media (max-width: 1540px) {
	.social-sidebar {
		left: 32px;
	}
}

.social-sidebar:hover {
	box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15), 0 3px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-50%) translateX(2px);
}

.social-sidebar-inner {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	padding: 0;
}

.social-sidebar .social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--color-white);
	background-color: transparent;
	border-radius: 8px;
	transition: all var(--transition-base);
	position: relative;
}

.social-sidebar .social-icon:hover {
	transform: scale(1.2) rotate(5deg);
	color: var(--color-primary);
	background-color: rgba(213, 164, 45, 0.1);
}

.social-sidebar .social-icon::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: var(--color-primary);
	border-radius: 8px;
	opacity: 0;
	transition: opacity var(--transition-base);
	z-index: -1;
}

.social-sidebar .social-icon:hover {
	color: var(--color-white);
	transform: scale(1.1);
}

.social-sidebar .social-icon:hover::before {
	opacity: 1;
}

.social-sidebar .social-icon svg {
	position: relative;
	z-index: 1;
	transition: all var(--transition-base);
}

/* Mobile: Sticky Social Bar Below Navbar */
@media (max-width: 768px) {
	.social-sidebar {
		position: sticky;
		top: 65px; /* sticks right below the 65px header */
		left: 0;
		bottom: auto;
		transform: none;
		width: 100%;
		z-index: 999; /* just below header z-index: 1000 */
		padding: 0.4rem 0;
		border-radius: 0;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
		border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	}

	.social-sidebar:hover {
		transform: none;
	}

	.social-sidebar-inner {
		flex-direction: row;
		justify-content: center;
		gap: 1.25rem;
	}

	.social-sidebar .social-icon {
		width: 36px;
		height: 36px;
	}

	.social-sidebar .social-icon svg {
		width: 18px;
		height: 18px;
	}

	body {
		padding-left: 0 !important;
		padding-top: 0 !important;
	}
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-black);
	margin-bottom: var(--spacing-sm);
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	letter-spacing: -0.02em;
}

h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 600;
}

h3 {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
	margin-bottom: var(--spacing-md);
	line-height: 1.8;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition-base);
}

/* ========================================
   Container & Layout
   ======================================== */

.container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.site-content {
	position: relative;
}

/* ========================================
   Header (Keep Your Existing Structure)
   ======================================== */

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: var(--z-preloader);
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
	opacity: 0;
	pointer-events: none;
}

.preloader.hidden {
	opacity: 0;
	visibility: hidden;
	display: none;
}

.preloader-logo {
	font-family: var(--font-display);
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.logo-r-1 {
	color: var(--color-black);
}

.logo-r-2 {
	color: var(--color-primary);
}

.site-header {
	position: sticky;
	top: 0;
	background-color: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	z-index: var(--z-header);
	transition: all var(--transition-base);
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.625rem 0;
	max-width: 1440px;
	margin: 0 auto;
	width: 100%;
}

.site-logo {
	display: inline-block;
	line-height: 0;
}

.logo-image {
	height: 50px;
	width: auto;
	display: block;
}

.site-logo-text {
	font-family: var(--font-heading);
	font-size: 1.75rem;
	font-weight: 700;
	display: flex;
	align-items: baseline;
	gap: 0.25rem;
}

.logo-ruthie {
	color: var(--color-black);
	letter-spacing: -0.02em;
}

.logo-realty {
	color: var(--color-primary);
	font-weight: 300;
}

.main-navigation {
	display: none;
}

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

.nav-menu a {
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--color-charcoal);
	letter-spacing: 0.02em;
	position: relative;
	padding: 0.5rem 0;
}

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: var(--color-primary);
	transition: width var(--transition-base);
}

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

.mobile-menu-toggle {
	display: flex;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.hamburger-line {
	width: 25px;
	height: 2px;
	background-color: var(--color-black);
	transition: var(--transition-base);
}

.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--color-white);
	z-index: var(--z-mobile-menu);
	transform: translateX(-100%);
	transition: transform var(--transition-base);
	padding-top: 80px;
}

.mobile-menu.active {
	transform: translateX(0);
}

.mobile-nav-menu {
	list-style: none;
	padding: 2rem;
}

.mobile-nav-menu li {
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-menu a {
	display: block;
	padding: 1rem 0;
	font-size: 1.25rem;
	color: var(--color-charcoal);
}

@media (min-width: 992px) {
	.main-navigation {
		display: block;
	}

	.mobile-menu-toggle {
		display: none;
	}
}

/* ========================================
   Hero Section - Centered Box with Reduced Height
   ======================================== */

.hero-section {
	position: relative;
	width: 100%;
	height: calc(100vh - 65px);
	overflow: hidden;
	background-color: #1a1a1a;
	padding: 0;
	margin-top: 0;
}

.hero-container {
	position: relative;
	width: 100%;
	height: 100%;
}

/* Name Overlay - Centered Horizontally and Vertically */
.hero-name-overlay {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 10;
	width: 100%;
	padding: 0 2rem;
	opacity: 0;
	animation: heroTextFadeIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

.hero-agent-name {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(2.5rem, 6vw, 5rem);
	font-weight: 700;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	color: var(--color-white);
	margin: 0 0 0.15rem 0;
	line-height: 0.9;
	text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
	opacity: 0;
	animation: slideInFromTop 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s forwards;
	white-space: nowrap;
	transform-origin: center;
	display: inline-block;
	transform: scaleX(0.6);
}

.hero-agent-subtitle {
	font-family: var(--font-heading);
	font-size: clamp(0.85rem, 1.4vw, 1rem);
	font-weight: 400;
	color: var(--color-white);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin: 0.3rem 0 0.4rem;
	opacity: 0.9;
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

.hero-divider {
	display: none;
}

.hero-agent-title {
	font-family: var(--font-body);
	font-size: clamp(1rem, 1.8vw, 1.4rem);
	font-weight: 400;
	color: var(--color-white);
	display: table;
	margin: 0.6rem auto 0;
	letter-spacing: 0.05em;
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.3);
	opacity: 0;
	animation: slideInFromBottom 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 1s forwards;
}


@keyframes heroTextFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes slideInFromTop {
	from {
		opacity: 0;
		transform: translateY(-40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInFromBottom {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Video — fullscreen */
.hero-video-box {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.hero-video-wrapper {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero-video-fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.hero-section {
		height: 70vh;
	}

	.hero-agent-name {
		font-size: 2rem;
		letter-spacing: 0.3em;
	}

	.hero-agent-title {
		font-size: 0.875rem;
	}

	.hero-name-overlay {
		bottom: 12%;
	}
}

/* ========================================
   Listings Redirect Section
   ======================================== */

.listings-redirect-section {
	padding: var(--spacing-md) 0;
	background-color: var(--color-white);
}

.listings-redirect-content {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
	padding: 3rem 2rem;
}

.listings-redirect-text {
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--color-text);
	margin-bottom: 2.5rem;
}

.btn-large {
	padding: 1.25rem 3rem;
	font-size: 1.125rem;
	font-weight: 600;
}

/* ========================================
   Market Updates - YouTube Section
   ======================================== */

.youtube-playlist-wrapper {
	max-width: 1000px;
	margin: 0 auto;
	padding: 2rem 0;
}

.youtube-placeholder {
	background-color: var(--color-off-white);
	border: 2px dashed var(--color-primary);
	border-radius: 8px;
	padding: 4rem 2rem;
	text-align: center;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.youtube-placeholder p {
	font-size: 1.125rem;
	color: var(--color-text);
	max-width: 500px;
}

/* ========================================
   Buttons - Minimal Style
   ======================================== */

.btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	font-family: var(--font-heading);
	font-size: 0.95rem;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all var(--transition-base);
	border: 2px solid transparent;
}

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

.btn-primary:hover {
	background-color: transparent;
	color: #000000;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
	background-color: transparent;
	color: var(--color-white);
	border-color: var(--color-white);
}

.btn-secondary:hover {
	background-color: var(--color-white);
	color: var(--color-charcoal);
	transform: translateY(-2px);
}

/* ========================================
   Sections - Minimal Spacing
   ======================================== */

section {
	padding: var(--spacing-xl) 0;
	position: relative;
}

.market-updates-section {
	padding: var(--spacing-xxl) 0;
	background-color: var(--color-white);
}

.about-section .section-header {
	margin-top: 0;
	margin-bottom: 1.5rem;
}

/* section backgrounds controlled individually — no auto alternating */

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

.section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 600;
	color: var(--color-black);
	margin-bottom: 1rem;
}

.title-underline {
	height: 3px;
	background-color: var(--color-primary);
	margin: 0 auto;
	width: 80px;
	box-shadow: 0 2px 8px rgba(213, 164, 45, 0.4);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(22px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes expandWidth {
	from {
		width: 0;
		opacity: 0;
	}
	to {
		width: 80px;
		opacity: 1;
	}
}

/* ========================================
   Specific Sections - Clean Minimal Style
   ======================================== */

/* Homebot */
.homebot-section {
	background-color: var(--color-white);
}

.homebot-intro {
	font-size: 1.125rem;
	line-height: 1.8;
	text-align: center;
	max-width: 800px;
	margin: 0 auto 3rem;
	color: var(--color-text);
}

.homebot-placeholder {
	background-color: var(--color-background-alt);
	padding: 4rem 2rem;
	text-align: center;
	border: 2px dashed rgba(0, 0, 0, 0.1);
}

/* Listings */
.listings-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-bottom: 3rem;
}

.no-listings {
	text-align: center;
	padding: 4rem 2rem;
	background-color: var(--color-background-alt);
	border-radius: 8px;
}

.listings-cta {
	text-align: center;
	margin-top: 3rem;
}

/* Market Updates */
.market-updates-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
}

.market-update-card {
	text-align: center;
	padding: 2.5rem 2rem;
	background-color: var(--color-white);
	border: 1px solid rgba(0, 0, 0, 0.05);
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
	will-change: transform, opacity;
}

.market-update-card.is-visible {
	opacity: 1;
	transform: none;
}

.market-update-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
	border-color: var(--color-primary);
}

.market-qr {
	margin-bottom: 1.5rem;
}

.qr-code {
	max-width: 150px;
	margin: 0 auto;
}

/* About Section — Haley Jones full-bleed layout */
.about-section {
	padding: 0;
	background-color: #ffffff;
	margin-top: 5rem;
}

.about-content {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	min-height: 100vh;
	max-height: 100vh;
	align-items: stretch;
	gap: 0;
}

/* Text column */
.about-text-col {
	display: flex;
	align-items: center;
	padding: 3rem 5rem 3rem 4rem;
	background-color: #ffffff;
	order: 2;
	overflow: hidden;
}

.about-text-inner {
	max-width: 520px;
}

/* Photo column */
.about-image-col {
	position: relative;
	border-right: 6px solid var(--color-primary);
	order: 1;
	overflow: hidden;
	background: #fdf8ee;
}

.about-image-wrapper {
	position: absolute;
	inset: 0;
	opacity: 1;
	transform: none;
}

.about-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
	transition: transform var(--transition-slow);
}

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

.about-image-border {
	display: none;
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.about-text {
	opacity: 1;
}

.about-text p {
	font-size: 0.9375rem;
	line-height: 1.7;
	margin-bottom: 0.9rem;
}

.about-tagline {
	font-style: italic;
	font-size: 1.1rem;
	color: var(--color-primary);
	font-weight: 500;
	margin: 1rem 0;
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
	will-change: transform, opacity;
}

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

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Animated Signature */
.about-signature {
	margin: 0.75rem 0;
	text-align: left;
}

.signature-image {
	height: 58px;
	width: auto;
	display: block;
}

/* Follow Me Button */
.about-cta {
	margin-top: 2rem;
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
	will-change: transform, opacity;
}

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

.btn {
	transition: all var(--transition-smooth);
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
	width: 300px;
	height: 300px;
}

.btn:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 12px 28px rgba(213, 164, 45, 0.4);
}

@media (max-width: 991px) {
	.about-content {
		grid-template-columns: 1fr;
		min-height: unset;
	}

	.about-text-col {
		padding: 3rem 2rem;
		order: 2;
	}

	.about-image-col {
		order: 1;
		border-right: none;
		border-bottom: 6px solid var(--color-primary);
		min-height: 400px;
	}
}

/* Instagram Section */
.instagram-section {
	padding: var(--spacing-xxl) 0;
	background-color: var(--color-white);
}

/* YouTube Section */
.youtube-section {
	padding: var(--spacing-xxl) 0;
	background-color: #000000;
}

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

.youtube-section .title-underline {
	background-color: var(--color-primary);
}

.youtube-section .plugin-placeholder,
.youtube-section .youtube-placeholder {
	background-color: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.15);
	color: var(--color-off-white);
}

.youtube-section .plugin-placeholder h3,
.youtube-section .youtube-placeholder h3 {
	color: var(--color-white);
}

.youtube-section .plugin-placeholder p,
.youtube-section .youtube-placeholder p {
	color: rgba(255, 255, 255, 0.7);
}

.instagram-placeholder,
.youtube-placeholder,
.mashore-placeholder,
.plugin-placeholder {
	background-color: var(--color-background-alt);
	padding: 4rem 2rem;
	text-align: center;
	border: 2px dashed rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), box-shadow var(--transition-smooth), border-color var(--transition-smooth), translateY var(--transition-smooth);
	will-change: transform, opacity;
}

.youtube-placeholder.is-visible,
.mashore-placeholder.is-visible,
.plugin-placeholder.is-visible {
	opacity: 1;
	transform: none;
}

.instagram-placeholder:hover,
.youtube-placeholder:hover,
.mashore-placeholder:hover,
.plugin-placeholder:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border-color: var(--color-primary);
}

.placeholder-icon {
	font-size: 4rem;
	margin-bottom: 1rem;
	animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.market-updates-placeholder {
	background: linear-gradient(135deg, #faf9f6 0%, #f5f5f5 100%);
	border: 3px dashed var(--color-primary);
	padding: 3rem 2rem;
	max-width: 900px;
	margin: 0 auto;
}

.market-updates-placeholder h3 {
	color: var(--color-primary);
	font-size: 1.75rem;
	margin-bottom: 1rem;
}

.placeholder-desc {
	font-size: 1.125rem;
	color: var(--color-text);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.placeholder-steps {
	background: white;
	padding: 2rem;
	border-radius: 8px;
	margin: 2rem 0;
	text-align: left;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.placeholder-steps ol {
	margin-left: 1.5rem;
	margin-top: 1rem;
}

.placeholder-steps li {
	margin-bottom: 0.75rem;
	line-height: 1.6;
}

.placeholder-steps strong {
	color: var(--color-primary);
}

/* Testimonials */
.subsection-title {
	font-size: 1.5rem;
	text-align: center;
	margin: 3rem 0 2rem;
	color: var(--color-black);
}

.google-reviews-section {
	margin-bottom: 4rem;
}

.video-testimonials-section {
	margin-top: 4rem;
}

.video-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.video-testimonial-item {
	background: var(--color-white);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: transform var(--transition-base);
}

.video-testimonial-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.video-testimonial-item .video-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	background: #000;
}

.video-testimonial-item video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonials-wrapper {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	padding-bottom: 4rem;
}

.testimonials-slider {
	position: relative;
	min-height: 650px;
	overflow: visible;
}

.testimonial-card {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: all var(--transition-smooth);
	padding: 0;
	text-align: center;
	transform: scale(0.95);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.testimonial-card.active {
	opacity: 1;
	visibility: visible;
	position: relative;
	animation: testimonialSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes testimonialSlideIn {
	from {
		opacity: 0;
		transform: scale(0.95) translateY(20px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.testimonial-video-wrapper {
	position: relative;
	width: 100%;
	max-width: 700px;
	margin: 0 auto 2.5rem;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
	background: #000;
}

.testimonial-video-wrapper video {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 16/9;
}

.testimonial-stars {
	font-size: 1.75rem;
	color: var(--color-primary);
	margin-bottom: 1.5rem;
	display: flex;
	gap: 0.25rem;
	justify-content: center;
}

.testimonial-stars .star {
	display: inline-block;
	filter: drop-shadow(0 2px 4px rgba(213, 164, 45, 0.3));
}

.testimonial-text {
	font-size: 1.375rem;
	line-height: 1.9;
	font-style: italic;
	margin-bottom: 2rem;
	color: var(--color-charcoal);
	max-width: 800px;
	width: 100%;
	position: relative;
	padding: 0 2rem;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.testimonial-text::before {
	content: '"';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -2rem;
	font-size: 3rem;
	color: var(--color-primary);
	opacity: 0.3;
	font-family: Georgia, serif;
}

.testimonial-author {
	font-weight: 600;
	color: var(--color-primary);
	font-size: 1.125rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-top: 1rem;
	text-align: center;
	width: 100%;
}

.testimonials-controls {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	margin-top: 3rem;
	position: relative;
	z-index: 10;
}

.testimonial-prev,
.testimonial-next {
	width: 60px;
	height: 60px;
	border: 3px solid var(--color-primary);
	transition: all var(--transition-smooth);
	background: var(--color-white);
	color: var(--color-primary);
	font-size: 2.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	line-height: 1;
	font-weight: 300;
}

.testimonial-prev:hover,
.testimonial-next:hover {
	background-color: var(--color-primary);
	color: var(--color-white);
	transform: scale(1.15) rotate(5deg);
	box-shadow: 0 8px 25px rgba(213, 164, 45, 0.5);
}

.testimonial-prev:active,
.testimonial-next:active {
	transform: scale(1.05) rotate(0deg);
}

@media (max-width: 768px) {
	.testimonials-slider {
		min-height: 700px;
	}

	.testimonial-text {
		font-size: 1.125rem;
		padding: 0 1rem;
	}

	.testimonial-video-wrapper {
		max-width: 100%;
		margin-bottom: 2rem;
	}
}

.testimonials-qr {
	text-align: center;
	margin-top: 3rem;
}

/* Contact Section */
.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-xxl);
	margin-top: 3rem;
}

.contact-left {
	margin-left: 10%;
}

.contact-reasons h3 {
	margin-bottom: 1.5rem;
}

.reasons-list {
	list-style: none;
	margin-bottom: 2rem;
}

.reasons-list li {
	padding: 0.75rem 0;
	padding-left: 1.5rem;
	position: relative;
}

.reasons-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--color-primary);
	font-weight: bold;
}

.contact-direct {
	margin-top: 2rem;
}

.contact-direct p {
	margin-bottom: 0.75rem;
}

.contact-direct a {
	color: var(--color-primary);
	font-weight: 500;
}

.contact-direct a:hover {
	text-decoration: underline;
}

/* Contact Form */
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--color-charcoal);
}

.form-group input,
.form-group textarea {
	padding: 1rem;
	border: 1px solid rgba(0, 0, 0, 0.15);
	font-family: var(--font-body);
	font-size: 1rem;
	transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(213, 164, 45, 0.1);
}

.radio-options {
	display: flex;
	gap: 1.5rem;
	margin-top: 0.5rem;
}

.radio-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
}

.contact-form-notice {
	margin-top: 1.5rem;
	padding: 1.5rem;
	background-color: var(--color-background-alt);
	border-left: 3px solid var(--color-primary);
	font-size: 0.95rem;
}

@media (max-width: 991px) {
	.contact-content {
		grid-template-columns: 1fr;
	}
}

/* ========================================
   Footer
   ======================================== */

.site-footer {
	background-color: #000000;
	color: var(--color-off-white);
	border-top: 3px solid var(--color-primary);
	padding: 5rem 0 3rem;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 4rem;
	align-items: start;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
	margin-bottom: 1.25rem;
}

.footer-logo-image {
	height: 140px;
	width: auto;
	filter: brightness(0) invert(1);
}

.footer-tagline {
	font-size: 0.9rem;
	opacity: 0.65;
	line-height: 1.7;
	max-width: 300px;
}

.footer-col h3 {
	font-family: var(--font-heading);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: 1.25rem;
}

.footer-phone,
.footer-email,
.footer-brokerage {
	margin-bottom: 0.75rem;
	font-size: 0.9rem;
	line-height: 1.6;
}

.footer-phone a,
.footer-email a {
	color: var(--color-off-white);
	opacity: 0.85;
	transition: color var(--transition-base), opacity var(--transition-base);
	text-decoration: none;
}

.footer-phone a:hover,
.footer-email a:hover {
	opacity: 1;
	color: var(--color-primary);
}

.footer-logos {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-logo-item svg {
	opacity: 0.6;
	color: var(--color-off-white);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	margin-top: 2rem;
}

.footer-bottom p {
	margin: 0.4rem 0;
	font-size: 0.8rem;
	opacity: 0.5;
	letter-spacing: 0.03em;
}

@media (max-width: 991px) {
	.footer-content {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}

	.footer-branding {
		grid-column: 1 / -1;
	}
}

@media (max-width: 600px) {
	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

/* ========================================
   Utility Classes
   ======================================== */

.smooth-scroll {
	scroll-behavior: smooth;
}

/* Animation Classes */
.js-animate-on-scroll {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform, opacity;
}

.js-animate-on-scroll.is-visible,
.js-animate-on-scroll.animated {
	opacity: 1;
	transform: none;
}

/* ========================================
   Responsive Adjustments
   ======================================== */

@media (max-width: 768px) {
	:root {
		--spacing-xxxl: 8rem;
		--spacing-xxl: 6rem;
		--spacing-xl: 4rem;
		--spacing-lg: 3rem;
	}

	section {
		padding: var(--spacing-xl) 0;
	}

	.container {
		padding: 0 1.5rem;
	}
}

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

/* ========================================
   Fluent Forms — Site Theme Override
   ======================================== */

/* Form wrapper */
.fluentform,
.ff-form-wrap {
	font-family: 'Lato', -apple-system, sans-serif !important;
	color: #333333 !important;
}

/* Labels */
.fluentform .ff-el-form-control label,
.fluentform .ff-el-input--label label,
.fluentform label {
	font-family: 'Montserrat', sans-serif !important;
	font-size: 0.85rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
	color: #333333 !important;
	margin-bottom: 0.5rem !important;
}

/* Input fields, textareas, selects */
.fluentform .ff-el-form-control input,
.fluentform .ff-el-form-control textarea,
.fluentform .ff-el-form-control select,
.fluentform input[type="text"],
.fluentform input[type="email"],
.fluentform input[type="tel"],
.fluentform input[type="number"],
.fluentform input[type="url"],
.fluentform textarea,
.fluentform select {
	font-family: 'Lato', sans-serif !important;
	font-size: 1rem !important;
	color: #333333 !important;
	background-color: #ffffff !important;
	border: 1px solid #d5a42d !important;
	border-radius: 4px !important;
	padding: 0.85rem 1rem !important;
	width: 100% !important;
	transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
	box-shadow: none !important;
	outline: none !important;
}

/* Focus state */
.fluentform .ff-el-form-control input:focus,
.fluentform .ff-el-form-control textarea:focus,
.fluentform .ff-el-form-control select:focus,
.fluentform input:focus,
.fluentform textarea:focus,
.fluentform select:focus {
	border-color: #d5a42d !important;
	box-shadow: 0 0 0 3px rgba(213, 164, 45, 0.2) !important;
	outline: none !important;
}

/* Placeholder text */
.fluentform input::placeholder,
.fluentform textarea::placeholder {
	color: #999999 !important;
	opacity: 1 !important;
}

/* Submit button */
.fluentform .ff-btn-submit,
.fluentform button[type="submit"],
.fluentform input[type="submit"] {
	font-family: 'Montserrat', sans-serif !important;
	font-size: 0.95rem !important;
	font-weight: 500 !important;
	letter-spacing: 0.05em !important;
	text-transform: uppercase !important;
	background-color: #d5a42d !important;
	color: #ffffff !important;
	border: 2px solid #d5a42d !important;
	border-radius: 0 !important;
	padding: 1rem 2.5rem !important;
	cursor: pointer !important;
	transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s ease !important;
	box-shadow: none !important;
	width: auto !important;
}

.fluentform .ff-btn-submit:hover,
.fluentform button[type="submit"]:hover,
.fluentform input[type="submit"]:hover {
	background-color: transparent !important;
	color: #d5a42d !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 5px 15px rgba(213, 164, 45, 0.2) !important;
}

/* Error messages */
.fluentform .error,
.fluentform .ff-el-is-error .ff-el-form-control input,
.fluentform .ff-el-is-error .ff-el-form-control textarea,
.fluentform .ff-el-is-error .ff-el-form-control select {
	border-color: #c0392b !important;
}

.fluentform .ff-el-is-error .error,
.fluentform .text-danger {
	font-size: 0.8rem !important;
	color: #c0392b !important;
	margin-top: 0.25rem !important;
	font-family: 'Lato', sans-serif !important;
}

/* Success message */
.fluentform .ff-message-success,
.fluentform .ff-errors-in-screen {
	font-family: 'Montserrat', sans-serif !important;
	font-size: 1rem !important;
	font-weight: 600 !important;
	color: #d5a42d !important;
	padding: 1rem 1.5rem !important;
	border: 1px solid #d5a42d !important;
	border-radius: 4px !important;
	background: rgba(213, 164, 45, 0.08) !important;
}

/* Field spacing */
.fluentform .ff-el-group {
	margin-bottom: 1.5rem !important;
}

/* Section breaks / headings inside form */
.fluentform .ff-el-section-break h2,
.fluentform .ff-el-section-break h3 {
	font-family: 'Montserrat', sans-serif !important;
	color: #313042 !important;
	font-weight: 700 !important;
	letter-spacing: 0.04em !important;
}

/* Radio / Checkbox labels */
.fluentform .ff-el-form-check-label {
	font-family: 'Lato', sans-serif !important;
	font-size: 0.95rem !important;
	color: #333333 !important;
}

/* Checkbox / Radio accent color */
.fluentform input[type="checkbox"]:checked,
.fluentform input[type="radio"]:checked {
	accent-color: #d5a42d !important;
}

/* ========================================
   Blog — Shared Layout (clear social sidebar)
   ======================================== */

.blog-hero,
.blog-listing-section,
.single-post-hero,
.single-post-featured-image,
.single-post-body {
	padding-left: 110px;
}

@media (max-width: 768px) {
	.blog-hero,
	.blog-listing-section,
	.single-post-hero,
	.single-post-featured-image,
	.single-post-body {
		padding-left: 1rem;
	}
}

/* ========================================
   Blog Listing Page
   ======================================== */

.blog-hero {
	padding-top: 5rem;
	padding-bottom: 3rem;
	padding-right: 0;
	text-align: center;
	background: #fafafa;
	border-bottom: 1px solid rgba(0,0,0,0.06);
}

.blog-hero-eyebrow {
	font-family: 'Poppins', sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-primary);
	margin: 0 0 0.75rem;
}

.blog-hero-title {
	font-family: 'Poppins', sans-serif;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 300;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-dark-gray);
	margin: 0 0 0.75rem;
}

.blog-hero-subtitle {
	font-size: 0.95rem;
	color: var(--color-medium-gray);
	letter-spacing: 0.03em;
	margin: 0;
}

.blog-listing-section {
	padding-top: 4rem;
	padding-bottom: 6rem;
	padding-right: 0;
}

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

.blog-card {
	background: #fff;
	border: 1px solid rgba(0,0,0,0.07);
	overflow: hidden;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
	box-shadow: 0 12px 40px rgba(0,0,0,0.1);
	transform: translateY(-5px);
}

.blog-card-image-wrap {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #f0ede8;
}

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

.blog-card-image-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #f0ede8 0%, #e8e4dc 100%);
}

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

.blog-card-body {
	padding: 1.5rem 1.75rem 2rem;
}

.blog-card-meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.blog-card-date {
	font-size: 0.75rem;
	color: var(--color-medium-gray);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.blog-card-cat {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-primary);
	background: rgba(213, 164, 45, 0.1);
	padding: 0.2rem 0.5rem;
	border-radius: 2px;
}

.blog-card-title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.05rem;
	font-weight: 600;
	margin: 0 0 0.75rem;
	line-height: 1.45;
}

.blog-card-title a {
	color: var(--color-dark-gray);
	text-decoration: none;
	transition: color 0.2s ease;
}

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

.blog-card-excerpt {
	font-size: 0.875rem;
	color: var(--color-medium-gray);
	line-height: 1.75;
	margin: 0 0 1.25rem;
}

.blog-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-primary);
	text-decoration: none;
	transition: gap 0.2s ease;
}

.blog-card-link:hover {
	gap: 0.7rem;
}

.blog-pagination {
	margin-top: 3.5rem;
	text-align: center;
}

.blog-pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
}

.blog-pagination .page-numbers {
	font-size: 0.875rem;
	color: var(--color-dark-gray);
	text-decoration: none;
	padding: 0.5rem 1rem;
	border: 1px solid rgba(0,0,0,0.15);
	transition: all 0.2s ease;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
	background: var(--color-primary);
	color: #fff;
	border-color: var(--color-primary);
}

.blog-empty {
	text-align: center;
	padding: 5rem 0;
	color: var(--color-medium-gray);
	font-size: 1.1rem;
}

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

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

/* ========================================
   Single Blog Post
   ======================================== */

.single-post-hero {
	padding-top: 5rem;
	padding-bottom: 3rem;
	padding-right: 0;
	background: #fafafa;
	border-bottom: 1px solid rgba(0,0,0,0.06);
}

.single-post-cat {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-primary);
	background: rgba(213, 164, 45, 0.1);
	padding: 0.25rem 0.75rem;
	margin-bottom: 1.25rem;
	border-radius: 2px;
}

.single-post-title {
	font-family: 'Poppins', sans-serif;
	font-size: clamp(1.75rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1.25;
	color: var(--color-dark-gray);
	margin: 0 0 1.25rem;
	max-width: 800px;
}

.single-post-meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.85rem;
	color: var(--color-medium-gray);
}

.meta-dot {
	opacity: 0.4;
}

.single-post-featured-image {
	padding-top: 2.5rem;
	padding-bottom: 0;
	padding-right: 0;
}

.single-post-thumb {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
	display: block;
}

.single-post-body {
	padding-top: 3.5rem;
	padding-bottom: 6rem;
	padding-right: 0;
}

.single-post-content {
	max-width: 780px;
	font-size: 1.05rem;
	line-height: 1.85;
	color: #333;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	margin: 2rem 0 0.75rem;
	color: var(--color-dark-gray);
}

.single-post-content h2 { font-size: 1.5rem; }
.single-post-content h3 { font-size: 1.25rem; }

.single-post-content p {
	margin-bottom: 1.4rem;
}

.single-post-content ul,
.single-post-content ol {
	padding-left: 1.5rem;
	margin-bottom: 1.4rem;
}

.single-post-content li {
	margin-bottom: 0.5rem;
}

.single-post-content a {
	color: var(--color-primary);
	text-decoration: underline;
}

.single-post-footer {
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(0,0,0,0.08);
	max-width: 780px;
}

.single-post-cats {
	font-size: 0.85rem;
	color: var(--color-medium-gray);
}

.single-post-cats a {
	color: var(--color-primary);
	text-decoration: none;
}

.single-post-nav {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(0,0,0,0.08);
	max-width: 780px;
}

.post-nav-link {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	text-decoration: none;
	max-width: 45%;
}

.post-nav-next {
	text-align: right;
	margin-left: auto;
}

.post-nav-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.post-nav-title {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--color-dark-gray);
	line-height: 1.3;
	transition: color 0.2s ease;
}

.post-nav-link:hover .post-nav-title {
	color: var(--color-primary);
}

.single-post-back {
	margin-top: 2.5rem;
}

.btn-back {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-dark-gray);
	text-decoration: none;
	border-bottom: 1px solid rgba(0,0,0,0.2);
	padding-bottom: 2px;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.btn-back:hover {
	color: var(--color-primary);
	border-color: var(--color-primary);
}

/* ========================================
   Blog Comments
   ======================================== */

.single-post-comments {
	max-width: 780px;
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 1px solid rgba(0,0,0,0.08);
}

.single-post-comments .comments-title,
.single-post-comments #reply-title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--color-dark-gray);
	margin: 0 0 2rem;
}

.single-post-comments #reply-title {
	margin-top: 3rem;
}

/* Comment list */
.single-post-comments .comment-list {
	list-style: none;
	padding: 0;
	margin: 0 0 3rem;
}

.single-post-comments .comment {
	padding: 1.5rem 0;
	border-bottom: 1px solid rgba(0,0,0,0.06);
}

.single-post-comments .comment-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.5rem;
}

.single-post-comments .comment-author img {
	border-radius: 50%;
	width: 40px;
	height: 40px;
}

.single-post-comments .fn {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--color-dark-gray);
}

.single-post-comments .comment-metadata {
	font-size: 0.75rem;
	color: var(--color-medium-gray);
	margin-bottom: 0.75rem;
}

.single-post-comments .comment-metadata a {
	color: var(--color-medium-gray);
	text-decoration: none;
}

.single-post-comments .comment-content p {
	font-size: 0.95rem;
	line-height: 1.7;
	color: #444;
	margin: 0;
}

.single-post-comments .reply a {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-primary);
	text-decoration: none;
	margin-top: 0.5rem;
	display: inline-block;
}

/* Comment form */
.single-post-comments .comment-form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.single-post-comments .comment-form p {
	margin: 0;
}

.single-post-comments .comment-form label {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-dark-gray);
	margin-bottom: 0.4rem;
}

.single-post-comments .comment-form input[type="text"],
.single-post-comments .comment-form input[type="email"],
.single-post-comments .comment-form input[type="url"],
.single-post-comments .comment-form textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(0,0,0,0.15);
	border-radius: 0;
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--color-dark-gray);
	background: #fff;
	transition: border-color 0.2s ease;
	box-sizing: border-box;
}

.single-post-comments .comment-form input:focus,
.single-post-comments .comment-form textarea:focus {
	outline: none;
	border-color: var(--color-primary);
}

.single-post-comments .comment-form textarea {
	min-height: 140px;
	resize: vertical;
}

.single-post-comments .comment-form-author,
.single-post-comments .comment-form-email,
.single-post-comments .comment-form-url {
	flex: 1;
}

.single-post-comments .comment-form .form-submit {
	margin: 0;
}

.single-post-comments .comment-form input[type="submit"] {
	background: var(--color-dark-gray);
	color: #fff;
	border: none;
	padding: 0.85rem 2.5rem;
	font-family: 'Poppins', sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease;
	width: auto;
}

.single-post-comments .comment-form input[type="submit"]:hover {
	background: var(--color-primary);
}

.single-post-comments .comment-notes,
.single-post-comments .logged-in-as {
	font-size: 0.85rem;
	color: var(--color-medium-gray);
}

/* ========================================
   Footer — Redesigned
   ======================================== */

.site-footer {
	background: #111111;
	color: rgba(255,255,255,0.75);
	font-size: 0.9rem;
}

.footer-top {
	padding: 5rem 0 4rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1.2fr 1fr 1.2fr;
	gap: 3rem;
}

.footer-logo-image {
	max-width: 160px;
	width: 100%;
	filter: brightness(0) invert(1);
	margin-bottom: 1.25rem;
	display: block;
}

.footer-tagline {
	font-size: 0.85rem;
	line-height: 1.75;
	color: rgba(255,255,255,0.5);
	margin: 0 0 1.5rem;
	max-width: 260px;
}

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

.footer-social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255,255,255,0.15);
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	transition: all 0.2s ease;
}

.footer-social-icon:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

.footer-col-title {
	font-family: 'Poppins', sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-primary);
	margin: 0 0 1.5rem;
}

.footer-contact-list,
.footer-nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.footer-contact-list li,
.footer-nav-list li {
	color: rgba(255,255,255,0.6);
	font-size: 0.875rem;
	line-height: 1.5;
}

.footer-contact-list a,
.footer-nav-list a {
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-contact-list a:hover,
.footer-nav-list a:hover {
	color: var(--color-primary);
}

.footer-badge-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-badge {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.badge-icon {
	font-size: 1.5rem;
	color: var(--color-primary);
	line-height: 1;
}

.badge-label {
	font-size: 0.8rem;
	color: rgba(255,255,255,0.6);
	line-height: 1.4;
}

.badge-label small {
	font-size: 0.7rem;
	opacity: 0.7;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.07);
	padding: 1.25rem 0;
}

.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.footer-copy {
	font-size: 0.78rem;
	color: rgba(255,255,255,0.35);
	margin: 0;
}

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

.footer-legal-links a {
	font-size: 0.78rem;
	color: rgba(255,255,255,0.35);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-legal-links a:hover {
	color: var(--color-primary);
}

@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}
}

@media (max-width: 600px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.footer-bottom-inner {
		flex-direction: column;
		text-align: center;
	}
}

/* ========================================
   Privacy Policy Page
   ======================================== */

.privacy-hero {
	padding: 5rem 0 3rem;
	background: #fafafa;
	border-bottom: 1px solid rgba(0,0,0,0.06);
	text-align: center;
}

.privacy-eyebrow {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-primary);
	margin: 0 0 0.75rem;
}

.privacy-title {
	font-family: 'Poppins', sans-serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 300;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-dark-gray);
	margin: 0 0 0.75rem;
}

.privacy-meta {
	font-size: 0.85rem;
	color: var(--color-medium-gray);
	margin: 0;
}

.privacy-body {
	padding: 4rem 0 6rem;
}

.privacy-content {
	max-width: 800px;
	margin: 0 auto;
	font-size: 0.975rem;
	line-height: 1.85;
	color: #444;
}

.privacy-content h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-dark-gray);
	margin: 2.5rem 0 0.75rem;
	padding-bottom: 0.4rem;
	border-bottom: 1px solid rgba(0,0,0,0.08);
}

.privacy-content p {
	margin-bottom: 1rem;
}

.privacy-content ul {
	padding-left: 1.5rem;
	margin-bottom: 1rem;
}

.privacy-content li {
	margin-bottom: 0.4rem;
}

.privacy-content a {
	color: var(--color-primary);
	text-decoration: underline;
}

.privacy-contact-box {
	background: #fafafa;
	border: 1px solid rgba(0,0,0,0.08);
	border-left: 3px solid var(--color-primary);
	padding: 1.5rem 2rem;
	margin-top: 1rem;
}

.privacy-contact-box p {
	margin: 0 0 0.4rem;
}

.privacy-contact-box a {
	color: var(--color-primary);
}

/* ========================================
   Blog Preview Section (Front Page)
   ======================================== */

.blog-preview-section {
	padding: var(--spacing-xxl) 0;
	background: #fafafa;
}

.section-subtitle {
	font-size: 0.95rem;
	color: var(--color-medium-gray);
	margin-top: 0.5rem;
	text-align: center;
}

.blog-preview-cta {
	text-align: center;
	margin-top: 3rem;
}
