/* Beautiful Exotic Savannahs — cattery components
   Palette: charcoal / gold / cream drawn from savannah coats */

:root {
	--bes-black: #0e0d0b;
	--bes-charcoal: #1c1a16;
	--bes-charcoal-2: #26231d;
	--bes-umber: #3a3327;
	--bes-gold: #d4a24e;
	--bes-gold-deep: #b8863b;
	--bes-cream: #f5edda;
	--bes-sand: #efe6d0;
	--bes-ink: #2a261f;
	--bes-serif: "Playfair Display", Georgia, "Times New Roman", serif;
	--bes-sans: "Jost", "Segoe UI", system-ui, sans-serif;
}

/* ---------------------------------------------------------- Hero */

.bes-hero {
	position: relative;
	overflow: hidden;
	background: var(--bes-charcoal-2);
	color: var(--bes-cream);
	width: 100%;
}
.bes-hero-full { min-height: min(92vh, 860px); }
.bes-hero-short { min-height: 420px; }

.bes-hero-layer {
	position: absolute;
	inset: -60px;
	will-change: transform;
	transition: transform 0.14s ease-out;
	pointer-events: none;
}
.bes-hero-photo-bg {
	inset: -80px;
	background-size: cover;
	background-repeat: no-repeat;
}

/* Cinematic scrim: dark on the text side, vignette at the edges,
   so the cream headline reads over any photo. */
.bes-hero-scrim {
	inset: 0;
	background:
		linear-gradient(100deg, rgba(14, 13, 11, 0.9) 0%, rgba(20, 18, 14, 0.72) 34%, rgba(20, 18, 14, 0.3) 62%, rgba(14, 13, 11, 0.12) 100%),
		linear-gradient(to top, rgba(14, 13, 11, 0.72) 0%, rgba(14, 13, 11, 0) 32%),
		linear-gradient(to bottom, rgba(14, 13, 11, 0.42) 0%, rgba(14, 13, 11, 0) 22%);
}

/* Fine film grain over the photo — hides upscaling artifacts on large
   monitors and gives the hero a printed, editorial feel. */
.bes-hero-scrim::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 180px 180px;
	opacity: 0.06;
	mix-blend-mode: overlay;
	pointer-events: none;
}

/* Soft-focus coat rosettes — shaded like a real savannah coat and blurred
   like bokeh so they read as depth, not decoration. */
.bes-rosette {
	position: absolute;
	width: 90px;
	height: auto;
	opacity: 0.5;
	animation: bes-drift 9s ease-in-out infinite alternate;
}
.bes-rosette-a { left: 8%; top: 20%; width: 84px; filter: blur(4px); opacity: 0.22; animation-duration: 11s; }
.bes-rosette-b { left: 70%; top: 12%; width: 62px; filter: blur(5px); opacity: 0.16; animation-delay: -4s; }
.bes-rosette-c { left: 16%; top: 68%; width: 110px; filter: blur(3px); opacity: 0.28; animation-delay: -6s; }
.bes-rosette-d { left: 84%; top: 62%; width: 140px; filter: blur(6px); opacity: 0.2; animation-duration: 13s; animation-delay: -2s; }
@media (max-width: 767px) {
	.bes-rosette { display: none; }
}

@keyframes bes-drift {
	from { margin-top: 0; margin-left: 0; }
	to { margin-top: 18px; margin-left: 12px; }
}

.bes-hero-content {
	inset: 0;
	display: flex;
	align-items: center;
	pointer-events: none;
}
.bes-hero-inner {
	pointer-events: auto;
	max-width: min(640px, 100%);
	box-sizing: border-box;
	padding: 140px 24px 120px clamp(24px, 9vw, 130px);
}
.bes-hero-tagline {
	font-family: var(--bes-sans);
	font-size: 13px;
	letter-spacing: 3px;
	color: var(--bes-gold);
	margin: 0 0 14px;
}
.bes-hero-title {
	font-family: var(--bes-serif);
	font-size: clamp(34px, 5vw, 62px);
	line-height: 1.12;
	color: var(--bes-cream);
	margin: 0 0 18px;
	font-weight: 600;
}
.bes-hero-subtitle {
	font-family: var(--bes-sans);
	font-size: clamp(16px, 1.6vw, 19px);
	line-height: 1.6;
	color: rgba(245, 237, 218, 0.82);
	margin: 0 0 30px;
}

.bes-hero-scroll {
	position: absolute;
	left: 50%;
	bottom: 22px;
	transform: translateX(-50%);
	width: 24px;
	height: 38px;
	border: 2px solid rgba(245, 237, 218, 0.5);
	border-radius: 14px;
}
.bes-hero-scroll span {
	position: absolute;
	left: 50%;
	top: 7px;
	width: 4px;
	height: 8px;
	margin-left: -2px;
	border-radius: 2px;
	background: var(--bes-gold);
	animation: bes-scrollhint 1.8s ease-in-out infinite;
}
@keyframes bes-scrollhint {
	0%, 100% { transform: translateY(0); opacity: 1; }
	60% { transform: translateY(10px); opacity: 0.2; }
}

@media (prefers-reduced-motion: reduce) {
	.bes-hero-layer { transition: none; }
	.bes-spot, .bes-paw, .bes-hero-scroll span { animation: none; }
}

/* ---------------------------------------------------------- Buttons */

.bes-btn {
	display: inline-block;
	font-family: var(--bes-sans);
	font-size: 15px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 34px;
	border-radius: 3px;
	transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.bes-btn:hover { transform: translateY(-2px); }
.bes-btn-gold {
	background: var(--bes-gold);
	color: var(--bes-black);
	border: 1px solid var(--bes-gold);
}
.bes-btn-gold:hover { background: var(--bes-gold-deep); border-color: var(--bes-gold-deep); color: var(--bes-black); }
.bes-btn-outline {
	background: transparent;
	color: var(--bes-ink);
	border: 1px solid var(--bes-gold-deep);
}
.bes-btn-outline:hover { background: var(--bes-gold); border-color: var(--bes-gold); color: var(--bes-black); }

/* ---------------------------------------------------------- Card grids */

.bes-grid {
	display: grid;
	gap: 34px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 10px 0;
}
.bes-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bes-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1024px) { .bes-grid, .bes-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .bes-grid, .bes-grid-2, .bes-grid-4 { grid-template-columns: 1fr; } }

.bes-card {
	background: #fffdf7;
	border: 1px solid rgba(184, 134, 59, 0.22);
	border-radius: 6px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bes-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 44px -18px rgba(28, 26, 22, 0.35);
}

.bes-card-media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--bes-charcoal-2);
}
.bes-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}
.bes-card:hover .bes-card-media img { transform: scale(1.05); }
.bes-card-placeholder {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 100%;
}
.bes-card-placeholder svg { width: 55%; height: auto; opacity: 0.5; }

.bes-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	font-family: var(--bes-sans);
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 2px;
}
.bes-badge-available { background: var(--bes-gold); color: var(--bes-black); }
.bes-badge-reserved { background: var(--bes-cream); color: var(--bes-ink); }
.bes-badge-sold { background: rgba(14, 13, 11, 0.75); color: var(--bes-cream); }
.bes-badge-role { background: var(--bes-gold); color: var(--bes-black); }

.bes-photo-count {
	position: absolute;
	bottom: 12px;
	right: 12px;
	font-family: var(--bes-sans);
	font-size: 12px;
	background: rgba(14, 13, 11, 0.65);
	color: var(--bes-cream);
	padding: 4px 10px;
	border-radius: 2px;
}

.bes-card-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bes-card-title {
	font-family: var(--bes-serif);
	font-size: 23px;
	margin: 0;
	line-height: 1.25;
}
.bes-card-title a { color: var(--bes-ink); text-decoration: none; }
.bes-card-title a:hover { color: var(--bes-gold-deep); }
.bes-card-meta {
	font-family: var(--bes-sans);
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--bes-gold-deep);
	margin: 0;
}
.bes-card-excerpt {
	font-family: var(--bes-sans);
	font-size: 15px;
	line-height: 1.65;
	color: #5b5546;
	margin: 0;
	flex: 1;
}
.bes-card-price {
	font-family: var(--bes-serif);
	font-style: italic;
	font-size: 16px;
	color: var(--bes-ink);
	margin: 4px 0 10px;
}
.bes-kitten-card .bes-btn { align-self: flex-start; font-size: 13px; padding: 11px 22px; }
.bes-status-sold .bes-card-price { display: none; }

.bes-empty {
	background: var(--bes-sand);
	border: 1px dashed var(--bes-gold-deep);
	border-radius: 6px;
	padding: 44px 30px;
	text-align: center;
	font-family: var(--bes-sans);
	font-size: 17px;
	color: var(--bes-ink);
}

/* ---------------------------------------------------------- Testimonials */

.bes-quote-card .bes-card-body { position: relative; padding-top: 40px; }
.bes-quote-mark {
	position: absolute;
	top: 2px;
	left: 18px;
	font-family: var(--bes-serif);
	font-size: 78px;
	line-height: 1;
	color: var(--bes-gold);
}
.bes-quote-text { font-family: var(--bes-serif); font-style: italic; font-size: 17px; line-height: 1.7; color: var(--bes-ink); }
.bes-quote-text p { margin: 0 0 10px; }
.bes-quote-who {
	font-family: var(--bes-sans);
	font-size: 13px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--bes-gold-deep);
	margin: 6px 0 0;
}

/* ---------------------------------------------------------- Contact */

.bes-contact {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
	margin: 24px 0;
}
.bes-contact-item {
	background: var(--bes-charcoal);
	border: 1px solid rgba(212, 162, 78, 0.35);
	border-radius: 6px;
	padding: 22px 24px;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
	transition: border-color 0.2s ease, transform 0.2s ease;
}
a.bes-contact-item:hover { border-color: var(--bes-gold); transform: translateY(-3px); }
.bes-contact-label {
	font-family: var(--bes-sans);
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--bes-gold);
}
.bes-contact-value {
	font-family: var(--bes-serif);
	font-size: 18px;
	color: var(--bes-cream);
	overflow-wrap: anywhere;
}
.bes-contact-social a { color: var(--bes-cream); text-decoration: underline; text-decoration-color: var(--bes-gold); margin-right: 10px; }

/* ---------------------------------------------------------- Profile pages */

.bes-profile { background: #fffdf7; }
.bes-profile-hero {
	background-color: var(--bes-charcoal-2);
	color: var(--bes-cream);
	padding: clamp(120px, 16vh, 180px) 24px 60px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.bes-profile-hero::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 90px;
	height: 3px;
	background: var(--bes-gold);
}
.bes-profile-hero-inner { position: relative; max-width: 820px; margin: 0 auto; }
.bes-profile-title {
	font-family: var(--bes-serif);
	font-size: clamp(30px, 4vw, 48px);
	margin: 0 0 12px;
	color: var(--bes-cream);
}
.bes-profile-meta {
	font-family: var(--bes-sans);
	font-size: 15px;
	letter-spacing: 1px;
	color: rgba(245, 237, 218, 0.8);
	margin: 0 0 18px;
}
.bes-profile-hero .bes-badge { position: static; display: inline-block; }

.bes-profile-body { max-width: 1080px; margin: 0 auto; padding: 56px 24px 90px; }

.bes-heading {
	font-family: var(--bes-serif);
	font-size: 30px;
	color: var(--bes-ink);
	margin: 0 0 18px;
}

.bes-gallery {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 54px;
}
.bes-gallery-item {
	display: block;
	border-radius: 5px;
	overflow: hidden;
	aspect-ratio: 1;
	background: var(--bes-sand);
}
.bes-gallery-lead { grid-column: span 2; grid-row: span 2; }
.bes-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.bes-gallery-item:hover img { transform: scale(1.06); }
@media (max-width: 640px) {
	.bes-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.bes-profile-about { margin-bottom: 50px; font-family: var(--bes-sans); font-size: 17px; line-height: 1.75; color: #4a4437; }

.bes-video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin-bottom: 50px;
}
.bes-video { position: relative; aspect-ratio: 16 / 9; border-radius: 5px; overflow: hidden; background: var(--bes-black); }
.bes-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.bes-profile-cta {
	background: var(--bes-sand);
	border-radius: 6px;
	padding: 40px 40px 30px;
	margin-bottom: 40px;
	font-family: var(--bes-sans);
	font-size: 16px;
	color: var(--bes-ink);
}
.bes-profile-back { margin: 0; }

/* ---------------------------------------------------------- Lightbox */

.bes-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(14, 13, 11, 0.94);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}
.bes-lightbox.is-open { opacity: 1; pointer-events: auto; }
.bes-lightbox img {
	max-width: min(92vw, 1400px);
	max-height: 84vh;
	object-fit: contain;
	border-radius: 4px;
}
.bes-lightbox-caption {
	position: absolute;
	bottom: 26px;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--bes-sans);
	font-size: 14px;
	letter-spacing: 1px;
	color: var(--bes-cream);
}
.bes-lightbox button {
	position: absolute;
	background: transparent;
	border: 1px solid rgba(245, 237, 218, 0.4);
	color: var(--bes-cream);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
}
.bes-lightbox button:hover { border-color: var(--bes-gold); background: rgba(212, 162, 78, 0.15); }
.bes-lightbox-close { top: 24px; right: 24px; }
.bes-lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.bes-lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
	.bes-lightbox-prev { left: 8px; }
	.bes-lightbox-next { right: 8px; }
}

/* ---------------------------------------------------------- Fur texture
   Subtle savannah coat rosettes + a warm gold glow, used on dark headers.
   Add the class "bes-fur-bg" to any dark Elementor section to apply it. */

.bes-fur-bg,
.bes-profile-hero {
	background-image:
		radial-gradient(ellipse at 28% 0%, rgba(212, 162, 78, 0.14), transparent 55%),
		linear-gradient(115deg, rgba(16, 14, 11, 0.94) 0%, rgba(22, 19, 15, 0.88) 55%, rgba(16, 14, 11, 0.93) 100%),
		url("../img/hero-kittens.jpg");
	background-size: auto, auto, cover;
	background-position: center, center, center 40%;
	background-repeat: no-repeat;
}

/* ---------------------------------------------------------- Section helpers for Elementor */

.bes-section-dark { background: var(--bes-charcoal); color: var(--bes-cream); }
.bes-section-cream { background: var(--bes-cream); }
.bes-kicker {
	font-family: var(--bes-sans) !important;
	font-size: 13px !important;
	letter-spacing: 3px !important;
	text-transform: uppercase;
	color: var(--bes-gold-deep) !important;
}
.bes-section-dark .bes-kicker { color: var(--bes-gold) !important; }
.bes-divider-paw {
	text-align: center;
	color: var(--bes-gold);
	font-size: 22px;
	letter-spacing: 12px;
}
