:root {
	--color-bg: #fffaf7;
	--color-surface: #ffffff;
	--color-surface-soft: #fff0ec;
	--color-text: #171416;
	--color-muted: #726a70;
	--color-primary: #ff4f72;
	--color-primary-dark: #de3157;
	--color-primary-soft: #ffe2e8;
	--color-accent: #ff8a4d;
	--color-calm: #2f827a;
	--color-border: #f0ddd8;
	--color-shadow: 0 18px 40px rgba(38, 21, 28, 0.1);
	--radius-sm: 10px;
	--radius-md: 18px;
	--radius-lg: 28px;
	--radius-pill: 999px;
	--container-width: 1220px;
	--container-padding: 16px;
}

* {
	box-sizing: border-box;
}

html {
	min-width: 320px;
	background: var(--color-bg);
	color: var(--color-text);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	background:
		radial-gradient(circle at 8% 0%, rgba(255, 138, 77, 0.12), transparent 30rem),
		linear-gradient(180deg, #fffaf7 0%, #ffffff 52%, #fffaf7 100%);
	color: var(--color-text);
}

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

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: var(--color-primary-dark);
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid rgba(255, 79, 114, 0.38);
	outline-offset: 3px;
}

.container {
	width: min(100% - (var(--container-padding) * 2), var(--container-width));
	margin-inline: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 250, 247, 0.92);
	border-bottom: 1px solid rgba(240, 221, 216, 0.9);
	backdrop-filter: blur(16px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 66px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	font-weight: 800;
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: var(--radius-pill);
	background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
	color: #ffffff;
	box-shadow: 0 10px 24px rgba(255, 79, 114, 0.28);
}

.brand-name {
	overflow-wrap: anywhere;
	font-size: 18px;
	letter-spacing: 0;
}

.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	min-width: 0;
}

.header-login {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 10px;
	border-radius: var(--radius-pill);
	color: var(--color-muted);
	font-weight: 700;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 0 18px;
	border: 0;
	border-radius: var(--radius-pill);
	font-weight: 800;
	line-height: 1.1;
	text-align: center;
	white-space: normal;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn-primary {
	background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
	color: #ffffff;
	box-shadow: 0 14px 32px rgba(255, 79, 114, 0.24);
}

.btn-primary:hover {
	color: #ffffff;
}

.btn-secondary {
	background: var(--color-surface);
	color: var(--color-text);
	border: 1px solid var(--color-border);
}

.btn-dark {
	background: var(--color-text);
	color: #ffffff;
	box-shadow: 0 14px 28px rgba(23, 20, 22, 0.2);
}

.btn-dark:hover {
	color: #ffffff;
}

.btn-small {
	min-height: 40px;
	padding-inline: 13px;
	font-size: 14px;
}

.site-main {
	min-height: 70vh;
	padding-bottom: 54px;
}

.hero-section {
	position: relative;
	overflow: hidden;
	padding: 30px 0 26px;
}

.hero-section::before,
.hero-section::after {
	content: "";
	position: absolute;
	z-index: 0;
	border-radius: 45% 55% 50% 50%;
	pointer-events: none;
}

.hero-section::before {
	inset: 18px auto auto -84px;
	width: 190px;
	height: 190px;
	background: rgba(255, 79, 114, 0.12);
}

.hero-section::after {
	right: -96px;
	bottom: -50px;
	width: 230px;
	height: 230px;
	background: rgba(255, 138, 77, 0.14);
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 22px;
}

.hero-copy {
	display: grid;
	align-content: center;
	gap: 16px;
}

.eyebrow {
	margin: 0;
	color: var(--color-primary-dark);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
	margin-block-start: 0;
}

h1 {
	margin-block-end: 0;
	font-size: 42px;
	line-height: 1.02;
	letter-spacing: 0;
}

h2 {
	margin-block-end: 0;
	font-size: 28px;
	line-height: 1.15;
	letter-spacing: 0;
}

h3 {
	font-size: 22px;
	line-height: 1.25;
}

.hero-lead {
	max-width: 42rem;
	margin-block-end: 0;
	color: var(--color-muted);
	font-size: 18px;
	line-height: 1.5;
}

.hero-actions,
.profile-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hero-media {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--color-primary-soft);
	box-shadow: var(--color-shadow);
}

.hero-media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.home-section,
.listing-head,
.listing-content,
.fullstory-speedbar,
.profile-page,
.static-page {
	padding-top: 34px;
}

.section-head {
	display: grid;
	gap: 7px;
	margin-bottom: 18px;
}

.profiles-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 13px;
}

.profile-card {
	position: relative;
	min-width: 0;
}

.profile-card-link {
	display: grid;
	gap: 10px;
	min-width: 0;
	color: var(--color-text);
}

.profile-photo-wrap {
	display: block;
	overflow: hidden;
	border-radius: 24px;
	background: var(--color-primary-soft);
	box-shadow: 0 8px 24px rgba(38, 21, 28, 0.08);
}

.profile-photo {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	transition: transform 0.22s ease;
}

.profile-card-body {
	display: grid;
	gap: 2px;
	min-width: 0;
	padding-inline: 2px;
}

.profile-title {
	min-width: 0;
	color: var(--color-text);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.profile-place,
.profile-more {
	color: var(--color-muted);
	font-size: 14px;
	line-height: 1.3;
	overflow-wrap: anywhere;
}

.profile-more {
	margin-top: 5px;
	color: var(--color-primary-dark);
	font-weight: 800;
}

.profile-edit {
	margin-top: 10px;
	font-size: 14px;
	font-weight: 700;
	color: var(--color-primary-dark);
}

.cta-band {
	position: relative;
	overflow: hidden;
	display: grid;
	gap: 18px;
	margin-top: 34px;
	padding: 24px;
	border-radius: var(--radius-lg);
	background:
		linear-gradient(135deg, #fff4ef, #ffe3e9 58%, #fffaf7);
	border: 1px solid rgba(255, 79, 114, 0.12);
}

.cta-band::after {
	content: "♥";
	position: absolute;
	right: 18px;
	bottom: -28px;
	color: rgba(255, 79, 114, 0.13);
	font-size: 124px;
	font-weight: 900;
	line-height: 1;
	pointer-events: none;
}

.cta-copy {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 8px;
}

.cta-copy p {
	max-width: 48rem;
	margin: 0;
	color: var(--color-muted);
}

.cta-band .btn {
	position: relative;
	z-index: 1;
	justify-self: start;
}

.category-pills,
.city-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.category-pill,
.city-links a {
	display: flex;
	align-items: center;
	min-width: 0;
	min-height: 48px;
	gap: 9px;
	padding: 11px 13px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-surface);
	font-weight: 800;
	box-shadow: 0 8px 18px rgba(38, 21, 28, 0.04);
}

.category-pill span:nth-child(2),
.city-links a {
	overflow-wrap: anywhere;
}

.category-icon {
	flex: 0 0 auto;
	color: var(--color-calm);
	font-size: 18px;
}

.category-count {
	flex: 0 0 auto;
	margin-left: auto;
	padding: 2px 8px;
	border-radius: var(--radius-pill);
	background: var(--color-primary-soft);
	color: var(--color-primary-dark);
	font-size: 12px;
}

.listing-head {
	display: grid;
	gap: 16px;
}

.breadcrumbs,
.breadcrumbs a {
	color: var(--color-muted);
	font-size: 14px;
}

.gender-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.gender-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-pill);
	background: var(--color-surface);
	font-weight: 800;
	color: var(--color-text);
}

.pagination-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 34px;
}

.pagination-wrap a,
.pagination-wrap span:not(.pages) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	min-height: 42px;
	padding: 0 12px;
	border-radius: var(--radius-pill);
	border: 1px solid var(--color-border);
	background: var(--color-surface);
	font-weight: 800;
}

.pagination-wrap .pages {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}

.pagination-wrap .pages span {
	background: var(--color-text);
	color: #ffffff;
	border-color: var(--color-text);
}

.seo-content,
.static-page,
.profile-content {
	max-width: 820px;
}

.seo-content {
	margin-top: 34px;
	padding-block: 28px;
	border-top: 1px solid var(--color-border);
}

.content-body {
	color: #2b2629;
}

.content-body > *:first-child,
.seo-content > *:first-child {
	margin-top: 0;
}

.content-body p,
.seo-content p {
	margin: 0 0 18px;
}

.content-body h2,
.seo-content h2,
.content-body h3,
.seo-content h3,
.content-body h4,
.seo-content h4 {
	margin: 30px 0 12px;
	color: var(--color-text);
}

.content-body ul,
.content-body ol,
.seo-content ul,
.seo-content ol {
	margin: 0 0 20px;
	padding-left: 22px;
}

.content-body li,
.seo-content li {
	margin-bottom: 8px;
}

.content-body a,
.seo-content a {
	color: var(--color-primary-dark);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.content-body blockquote,
.seo-content blockquote {
	margin: 24px 0;
	padding: 18px 20px;
	border-left: 4px solid var(--color-primary);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	background: var(--color-surface-soft);
	color: #352a30;
}

.content-body table,
.seo-content table {
	display: block;
	width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
	margin: 24px 0;
}

.content-body th,
.content-body td,
.seo-content th,
.seo-content td {
	padding: 10px 12px;
	border: 1px solid var(--color-border);
	text-align: left;
}

.content-body img,
.seo-content img {
	margin: 22px 0;
	border-radius: var(--radius-md);
}

.profile-page {
	display: grid;
	gap: 30px;
	padding-top: 18px;
}

.fullstory-speedbar {
	padding-top: 18px;
}

.profile-hero {
	display: grid;
	gap: 22px;
}

.profile-main-photo {
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--color-primary-soft);
	box-shadow: var(--color-shadow);
}

.profile-main-photo img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.profile-summary {
	display: grid;
	align-content: start;
	gap: 16px;
	min-height: 0;
}

.profile-summary h1 {
	font-size: 38px;
}

.profile-summary-content {
	min-height: 0;
	padding-top: 6px;
}

.profile-inline-cta {
	display: grid;
	gap: 12px;
	max-width: 820px;
	padding: 24px;
	border-radius: var(--radius-lg);
	background: var(--color-surface-soft);
}

.profile-inline-cta p {
	margin: 0;
	color: var(--color-muted);
}

.related-profiles {
	display: grid;
	gap: 18px;
	padding-top: 12px;
}

.system-message {
	display: grid;
	gap: 4px;
	margin-top: 18px;
	padding: 16px 18px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-surface);
	color: var(--color-muted);
}

.site-footer {
	padding: 34px 0 42px;
	border-top: 1px solid var(--color-border);
	background: #ffffff;
	color: var(--color-muted);
}

.footer-grid {
	display: grid;
	gap: 22px;
}

.footer-brand {
	margin-bottom: 12px;
	color: var(--color-text);
}

.site-footer p {
	max-width: 36rem;
	margin: 0;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 14px;
}

.footer-links a {
	font-weight: 700;
}

.xfieldimage.profile_photo {
	width: 100%;
	height: auto;
}

@media (hover: hover) and (pointer: fine) {
	.profile-card-link:hover .profile-photo {
		transform: scale(1.035);
	}

	.profile-card-link:hover .profile-photo-wrap {
		box-shadow: 0 16px 34px rgba(38, 21, 28, 0.13);
	}

	.category-pill:hover,
	.city-links a:hover,
	.gender-nav a:hover {
		transform: translateY(-1px);
		box-shadow: 0 14px 28px rgba(38, 21, 28, 0.08);
	}
}
