/* =============================================================
   FASHION FREELANCERS — THEME STYLESHEET
   Playfair Display + Inter · Cream & Gold editorial
   ============================================================= */

:root {
	--ff-black:     #1A1A1A;
	--ff-black-deep:#0F0F0F;
	--ff-gold:      #B8935E;
	--ff-gold-dark: #8B6D3D;
	--ff-gold-light:#D4AF7A;
	--ff-cream:     #FDFCF9;
	--ff-sand:      #F7F2E8;
	--ff-taupe:     #E8DCC4;
	--ff-paper:     #FFFFFF;
	--ff-border:    #EDE8DF;
	--ff-border-strong:#D9D0BC;
	--ff-text:      #1A1A1A;
	--ff-muted:     #6B6B6B;
	--ff-muted-soft:#8B8B8B;
	--ff-success:   #10B981;
	--ff-danger:    #EF4444;

	--ff-font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--ff-font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

	--ff-container:  1280px;
	--ff-radius-sm:  2px;
	--ff-radius-md:  4px;
	--ff-radius-pill:999px;

	--ff-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================  BASE  ========================= */

html { scroll-behavior: smooth; }
body {
	font-family: var(--ff-font-body);
	color: var(--ff-text);
	background: var(--ff-cream);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 16px;
	line-height: 1.6;
}

a { color: var(--ff-text); text-decoration: none; transition: color var(--ff-transition); }
a:hover { color: var(--ff-gold); }

h1, h2, h3, h4, h5, h6 { font-family: var(--ff-font-display); font-weight: 500; line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 16px; }

.screen-reader-text { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus {
	position: absolute; top: 12px; left: 12px;
	background: var(--ff-black); color: var(--ff-gold);
	padding: 10px 16px; z-index: 100000;
}

.ff-container { max-width: var(--ff-container); margin: 0 auto; padding: 0 32px; }
.ff-wrap { width: 100%; }

/* =========================  HEADER  ========================= */

.ff-site-header {
	background: var(--ff-paper);
	border-bottom: 0.5px solid var(--ff-border);
	position: sticky; top: 0; z-index: 100;
}
.ff-header-inner {
	max-width: var(--ff-container);
	margin: 0 auto;
	padding: 18px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
}
.ff-header-left { display: flex; align-items: center; gap: 36px; flex: 1; }

.ff-brand {
	display: flex; align-items: center; gap: 8px;
	font-family: var(--ff-font-display);
	font-size: 22px;
	font-weight: 500;
	letter-spacing: -0.02em;
	color: var(--ff-text);
}
.ff-brand-mark { color: var(--ff-gold); }
.ff-brand:hover { color: var(--ff-text); }

.ff-nav-primary {
	display: flex; gap: 24px;
	list-style: none; padding: 0; margin: 0;
}
.ff-nav-primary a {
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ff-muted);
	font-weight: 500;
	padding: 8px 0;
	position: relative;
}
.ff-nav-primary a:hover { color: var(--ff-text); }
.ff-nav-primary a::after {
	content: ''; position: absolute; bottom: 0; left: 0;
	width: 0; height: 1px; background: var(--ff-gold);
	transition: width var(--ff-transition);
}
.ff-nav-primary a:hover::after { width: 100%; }

.ff-nav-account { display: flex; gap: 10px; align-items: center; }
.ff-nav-toggle {
	display: none;
	background: transparent; border: 0;
	width: 40px; height: 40px;
	cursor: pointer;
	flex-direction: column;
	gap: 5px;
	justify-content: center;
	align-items: center;
	padding: 0;
}
.ff-nav-toggle-bar { display: block; width: 20px; height: 1.5px; background: var(--ff-text); transition: var(--ff-transition); }

/* =========================  BUTTONS  ========================= */

.ff-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 24px;
	font-family: var(--ff-font-body);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid transparent;
	border-radius: var(--ff-radius-sm);
	cursor: pointer;
	transition: all var(--ff-transition);
	line-height: 1;
	white-space: nowrap;
}
.ff-btn-solid {
	background: var(--ff-black);
	color: var(--ff-cream);
	border-color: var(--ff-black);
}
.ff-btn-solid:hover {
	background: var(--ff-gold);
	color: var(--ff-black);
	border-color: var(--ff-gold);
	transform: translateY(-1px);
}
.ff-btn-outline {
	background: transparent;
	color: var(--ff-black);
	border-color: var(--ff-black);
}
.ff-btn-outline:hover {
	background: var(--ff-black);
	color: var(--ff-gold);
}
.ff-btn-ghost {
	background: transparent;
	color: var(--ff-muted);
	border-color: var(--ff-border);
}
.ff-btn-ghost:hover {
	background: var(--ff-sand);
	color: var(--ff-text);
	border-color: var(--ff-text);
}
.ff-btn-link {
	background: transparent;
	color: var(--ff-text);
	border: 0;
	padding: 8px 0;
	font-size: 12px;
}
.ff-btn-link:hover { color: var(--ff-gold); }
.ff-btn-lg { padding: 16px 32px; font-size: 13px; }
.ff-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* =========================  HERO HOME  ========================= */

.ff-hero-home {
	background: linear-gradient(180deg, var(--ff-cream) 0%, var(--ff-sand) 100%);
	padding: 96px 32px 72px;
	position: relative;
	overflow: hidden;
}
.ff-hero-inner {
	max-width: var(--ff-container);
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.ff-hero-collage {
	position: absolute;
	top: 96px; right: 40px;
	display: grid;
	grid-template-columns: 160px 160px;
	grid-template-rows: 120px 120px 120px;
	gap: 6px;
	z-index: 1;
}
.ff-hero-tile { border-radius: 1px; }
.ff-hero-tile-1 { background: linear-gradient(135deg, var(--ff-taupe), var(--ff-gold-light)); grid-row: 1 / 3; }
.ff-hero-tile-2 { background: linear-gradient(135deg, var(--ff-gold-light), var(--ff-gold-dark)); }
.ff-hero-tile-3 { background: linear-gradient(135deg, #F5E9D3, #D9C096); grid-row: 2 / 4; }
.ff-hero-tile-4 { background: linear-gradient(135deg, var(--ff-gold), #8B6D3D); }

.ff-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--ff-paper);
	border: 0.5px solid var(--ff-border-strong);
	padding: 7px 14px;
	border-radius: var(--ff-radius-pill);
	margin-bottom: 24px;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ff-muted);
	font-weight: 500;
}
.ff-hero-dot {
	width: 6px; height: 6px;
	background: var(--ff-success);
	border-radius: 50%;
	animation: ff-pulse 2s infinite;
}
@keyframes ff-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}

.ff-hero-title {
	font-family: var(--ff-font-display);
	font-size: clamp(40px, 6vw, 72px);
	line-height: 1.02;
	letter-spacing: -0.025em;
	font-weight: 400;
	color: var(--ff-black);
	margin: 0 0 22px;
	max-width: 680px;
}
.ff-gold-italic {
	color: var(--ff-gold);
	font-style: italic;
	font-weight: 400;
}

.ff-hero-sub {
	font-size: 17px;
	line-height: 1.65;
	color: var(--ff-muted);
	max-width: 500px;
	margin: 0 0 36px;
}

.ff-hero-actions {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 56px;
}

.ff-hero-stats {
	display: flex;
	gap: 48px;
	padding-top: 32px;
	border-top: 0.5px solid var(--ff-border-strong);
	flex-wrap: wrap;
}
.ff-hero-stats > div {
	display: flex;
	flex-direction: column;
}
.ff-hero-stats strong {
	font-family: var(--ff-font-display);
	font-size: 32px;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--ff-black);
	font-weight: 400;
}
.ff-hero-stats span {
	font-size: 10px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--ff-muted-soft);
	margin-top: 6px;
	font-weight: 500;
}

/* =========================  PRESS BAND  ========================= */

.ff-press-band {
	background: var(--ff-paper);
	border-top: 0.5px solid var(--ff-border);
	border-bottom: 0.5px solid var(--ff-border);
}
.ff-press-inner {
	max-width: var(--ff-container);
	margin: 0 auto;
	padding: 14px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}
.ff-press-label {
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ff-muted-soft);
	font-weight: 500;
}
.ff-press-name {
	font-family: var(--ff-font-display);
	font-size: 16px;
	color: var(--ff-text);
	letter-spacing: 0.05em;
}
.ff-press-name.is-italic { font-style: italic; letter-spacing: 0.01em; }

/* =========================  SECTIONS  ========================= */

.ff-section-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 40px;
	gap: 24px;
	flex-wrap: wrap;
}
.ff-section-head-center {
	display: block;
	text-align: center;
	margin-bottom: 56px;
}
.ff-kicker {
	font-size: 11px;
	color: var(--ff-gold);
	letter-spacing: 0.25em;
	text-transform: uppercase;
	margin-bottom: 10px;
	font-weight: 500;
}
.ff-section-title {
	font-family: var(--ff-font-display);
	font-size: clamp(30px, 4vw, 44px);
	letter-spacing: -0.025em;
	font-weight: 400;
	margin: 0 0 14px;
	color: var(--ff-black);
}
.ff-section-lead {
	font-size: 15px;
	color: var(--ff-muted);
	max-width: 480px;
	margin: 0 auto;
	line-height: 1.65;
}
.ff-link-gold {
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ff-text);
	border-bottom: 1px solid var(--ff-gold);
	padding-bottom: 3px;
	font-weight: 500;
}
.ff-link-gold:hover { color: var(--ff-gold); border-color: var(--ff-text); }

/* =========================  FEATURED TALENT  ========================= */

.ff-featured-talent {
	padding: 72px 32px 64px;
	max-width: var(--ff-container);
	margin: 0 auto;
}
.ff-profile-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 24px 18px;
}
.ff-profile-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .ff-profile-grid-4 { grid-template-columns: repeat(2, 1fr); } }

/* Profile card */
.ff-card-profile {
	display: block;
	text-decoration: none;
	color: var(--ff-text);
	transition: transform var(--ff-transition);
}
.ff-card-profile:hover { transform: translateY(-4px); color: var(--ff-text); }
.ff-card-thumb {
	aspect-ratio: 3/4;
	background: var(--ff-taupe);
	overflow: hidden;
	margin-bottom: 12px;
	position: relative;
}
.ff-card-thumb img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}
.ff-card-profile:hover .ff-card-thumb img { transform: scale(1.04); }
.ff-card-placeholder {
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--ff-font-display);
	font-size: 40px;
	color: var(--ff-cream);
	background: linear-gradient(160deg, var(--ff-gold-light), var(--ff-gold-dark));
}
.ff-card-badge {
	position: absolute;
	top: 10px; left: 10px;
	background: var(--ff-black);
	color: var(--ff-gold);
	font-size: 10px;
	padding: 4px 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 500;
}
.ff-card-watermark {
	position: absolute;
	bottom: 10px; right: 10px;
	color: var(--ff-cream);
	font-family: var(--ff-font-display);
	font-size: 11px;
	opacity: 0.6;
	letter-spacing: 0.05em;
}
.ff-card-name {
	font-family: var(--ff-font-display);
	font-size: 18px;
	letter-spacing: -0.01em;
	font-weight: 500;
	margin-bottom: 2px;
}
.ff-card-desc {
	font-size: 10px;
	color: var(--ff-muted-soft);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 500;
}

/* =========================  HOW IT WORKS  ========================= */

.ff-how-it-works {
	padding: 88px 32px 80px;
	background: var(--ff-cream);
	border-top: 0.5px solid var(--ff-border);
}
.ff-steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	max-width: 900px;
	margin: 0 auto;
}
@media (max-width: 720px) { .ff-steps-grid { grid-template-columns: 1fr; gap: 48px; } }
.ff-step-card { text-align: center; }
.ff-step-num {
	font-family: var(--ff-font-display);
	font-size: 60px;
	font-style: italic;
	color: var(--ff-gold);
	margin-bottom: 12px;
	line-height: 1;
	font-weight: 400;
}
.ff-step-title {
	font-family: var(--ff-font-display);
	font-size: 24px;
	margin-bottom: 10px;
	font-weight: 500;
}
.ff-step-desc {
	font-size: 14px;
	color: var(--ff-muted);
	line-height: 1.65;
	margin: 0;
}

/* =========================  STATS BAND  ========================= */

.ff-stats-band {
	background: var(--ff-black);
	color: var(--ff-cream);
	padding: 64px 32px;
}
.ff-stats-inner {
	max-width: var(--ff-container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}
@media (max-width: 720px) { .ff-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
.ff-stat-value {
	font-family: var(--ff-font-display);
	font-size: 52px;
	color: var(--ff-gold-light);
	line-height: 1;
	letter-spacing: -0.02em;
	font-weight: 400;
}
.ff-stat-label {
	font-size: 11px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--ff-muted-soft);
	margin-top: 8px;
	font-weight: 500;
}

/* =========================  CTA JOIN  ========================= */

.ff-cta-join {
	padding: 88px 32px;
	background: linear-gradient(180deg, var(--ff-sand) 0%, var(--ff-cream) 100%);
	text-align: center;
}
.ff-cta-inner { max-width: 700px; margin: 0 auto; }
.ff-cta-title {
	font-family: var(--ff-font-display);
	font-size: clamp(32px, 5vw, 52px);
	line-height: 1.1;
	letter-spacing: -0.025em;
	font-weight: 400;
	margin: 0 0 16px;
}
.ff-cta-sub {
	font-size: 15px;
	color: var(--ff-muted);
	margin: 0 0 32px;
}

/* =========================  FOOTER  ========================= */

.ff-site-footer {
	background: var(--ff-black);
	color: var(--ff-cream);
	padding-top: 64px;
	margin-top: 80px;
}
.ff-footer-inner {
	max-width: var(--ff-container);
	margin: 0 auto;
	padding: 0 32px;
	display: grid;
	grid-template-columns: 1.2fr 2fr;
	gap: 64px;
}
@media (max-width: 860px) { .ff-footer-inner { grid-template-columns: 1fr; gap: 40px; } }

.ff-footer-mark {
	font-family: var(--ff-font-display);
	font-size: 22px;
	letter-spacing: -0.02em;
	color: var(--ff-cream);
	font-weight: 500;
	margin-bottom: 10px;
}
.ff-footer-mark span { color: var(--ff-gold); }
.ff-footer-tagline {
	font-size: 14px;
	color: var(--ff-muted-soft);
	line-height: 1.65;
	max-width: 280px;
}

.ff-footer-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
@media (max-width: 620px) { .ff-footer-columns { grid-template-columns: repeat(2, 1fr); } }
.ff-footer-col .widget-title,
.ff-footer-col h3 {
	font-family: var(--ff-font-body);
	font-size: 11px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--ff-gold-light);
	margin: 0 0 16px;
	font-weight: 600;
}
.ff-footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.ff-footer-col li { margin-bottom: 10px; }
.ff-footer-col a {
	font-size: 14px;
	color: #B8B8B8;
}
.ff-footer-col a:hover { color: var(--ff-gold); }

.ff-footer-bottom {
	border-top: 0.5px solid #2A2A2A;
	padding: 24px 0;
	margin-top: 48px;
	font-size: 12px;
	color: #8B8B8B;
}
.ff-footer-bottom .ff-footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	grid-template-columns: none;
	gap: 16px;
	flex-wrap: wrap;
}
.ff-footer-nav {
	list-style: none; padding: 0; margin: 0;
	display: flex; gap: 20px;
}
.ff-footer-nav a { font-size: 12px; color: #8B8B8B; }
.ff-footer-nav a:hover { color: var(--ff-gold); }
.ff-footer-bottom p { margin: 0; }

/* =========================  ARCHIVE CPT  ========================= */

.ff-archive-cpt {
	padding: 48px 32px 64px;
	max-width: var(--ff-container);
	margin: 0 auto;
}
.ff-archive-header { margin-bottom: 40px; }
.ff-archive-kicker {
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ff-gold);
	font-weight: 500;
	margin-bottom: 10px;
}
.ff-archive-title {
	font-family: var(--ff-font-display);
	font-size: clamp(36px, 5vw, 56px);
	letter-spacing: -0.025em;
	font-weight: 400;
	margin: 0 0 12px;
}
.ff-archive-sub {
	font-size: 15px;
	color: var(--ff-muted);
	max-width: 560px;
	margin: 0;
}

/* Listing rows (castings/jobs) */
.ff-listing-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.ff-listing-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 24px;
	align-items: center;
	padding: 24px 28px;
	background: var(--ff-paper);
	border: 0.5px solid var(--ff-border);
	transition: border-color var(--ff-transition), box-shadow var(--ff-transition);
}
.ff-listing-row:hover {
	border-color: var(--ff-gold);
	box-shadow: 0 8px 24px rgba(184, 147, 94, 0.08);
}
@media (max-width: 620px) {
	.ff-listing-row { grid-template-columns: 1fr; }
	.ff-listing-action { justify-self: flex-start; }
}
.ff-listing-meta-top,
.ff-listing-meta-bottom {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
.ff-listing-meta-top time {
	font-size: 11px;
	color: var(--ff-muted-soft);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.ff-pill {
	display: inline-block;
	padding: 4px 12px;
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 500;
}
.ff-pill-gold { background: var(--ff-gold); color: var(--ff-black); }
.ff-pill-ghost {
	display: inline-block;
	padding: 4px 12px;
	font-size: 11px;
	border: 0.5px solid var(--ff-border-strong);
	color: var(--ff-muted);
}
.ff-pill-date {
	font-size: 11px;
	color: var(--ff-muted-soft);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.ff-listing-title {
	font-family: var(--ff-font-display);
	font-size: 24px;
	margin: 0 0 6px;
	font-weight: 500;
}
.ff-listing-title a { color: var(--ff-text); }
.ff-listing-title a:hover { color: var(--ff-gold); }
.ff-listing-excerpt {
	font-size: 14px;
	color: var(--ff-muted);
	line-height: 1.6;
}

/* Single casting/job */
.ff-casting-single { max-width: 800px; margin: 0 auto; padding: 48px 32px 64px; }
.ff-listing-hero { margin-bottom: 40px; }
.ff-listing-pills { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 20px; }
.ff-listing-hero-title {
	font-family: var(--ff-font-display);
	font-size: clamp(32px, 4vw, 48px);
	letter-spacing: -0.025em;
	font-weight: 400;
	margin: 0 0 28px;
	line-height: 1.1;
}
.ff-listing-hero-meta {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 20px;
	padding: 20px 0;
	border-top: 0.5px solid var(--ff-border);
	border-bottom: 0.5px solid var(--ff-border);
}
.ff-listing-hero-meta > div { display: flex; flex-direction: column; }
.ff-listing-hero-meta strong {
	font-size: 10px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--ff-muted-soft);
	font-weight: 500;
	margin-bottom: 4px;
}
.ff-listing-hero-meta span {
	font-size: 15px;
	color: var(--ff-text);
	font-weight: 500;
}
.ff-listing-body { margin: 40px 0; font-size: 16px; line-height: 1.8; color: var(--ff-text); }
.ff-listing-body h2, .ff-listing-body h3 { margin-top: 32px; }
.ff-listing-thumb { margin: 0 0 32px; }
.ff-listing-cta { text-align: center; padding-top: 32px; border-top: 0.5px solid var(--ff-border); }

/* =========================  PAGE / POST / SEARCH  ========================= */

.ff-page, .ff-single, .ff-archive-default, .ff-search-results-page {
	padding: 48px 32px 64px;
	max-width: 900px;
	margin: 0 auto;
}
.ff-page-header { margin-bottom: 40px; }
.ff-page-title, .ff-single-title {
	font-family: var(--ff-font-display);
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 400;
	letter-spacing: -0.025em;
	margin: 0 0 12px;
}
.ff-page-content, .ff-single-content { font-size: 17px; line-height: 1.8; }
.ff-page-content h2, .ff-single-content h2 { margin-top: 40px; }
.ff-single-meta {
	font-size: 12px;
	color: var(--ff-muted-soft);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	display: flex; gap: 10px;
	margin-bottom: 20px;
}
.ff-single-thumb, .ff-page-thumb { margin: 0 0 32px; }

.ff-post-list { display: flex; flex-direction: column; gap: 40px; }
.ff-post { border-bottom: 0.5px solid var(--ff-border); padding-bottom: 32px; }
.ff-post-thumb { display: block; margin-bottom: 16px; }
.ff-post-thumb img { width: 100%; }
.ff-post-title {
	font-family: var(--ff-font-display);
	font-size: 28px;
	font-weight: 500;
	margin: 0 0 10px;
}
.ff-post-title a { color: var(--ff-text); }
.ff-post-title a:hover { color: var(--ff-gold); }
.ff-post-meta { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ff-muted-soft); margin-bottom: 8px; }
.ff-post-excerpt { color: var(--ff-muted); font-size: 15px; line-height: 1.65; }

/* Breadcrumbs */
.ff-breadcrumbs {
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ff-muted-soft);
	margin-bottom: 20px;
}
.ff-breadcrumbs a { color: var(--ff-muted); }
.ff-breadcrumbs a:hover { color: var(--ff-gold); }

/* Pagination */
.pagination, .nav-links { display: flex; gap: 4px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.page-numbers {
	display: inline-flex;
	align-items: center; justify-content: center;
	min-width: 40px; height: 40px;
	padding: 0 12px;
	border: 0.5px solid var(--ff-border-strong);
	color: var(--ff-text);
	font-size: 13px;
	transition: all var(--ff-transition);
}
.page-numbers.current,
.page-numbers:hover {
	background: var(--ff-black);
	color: var(--ff-gold);
	border-color: var(--ff-black);
}

/* Search form */
.ff-search-form { display: flex; gap: 8px; max-width: 480px; }
.ff-search-input {
	flex: 1;
	padding: 13px 16px;
	border: 0.5px solid var(--ff-border-strong);
	font-family: inherit;
	font-size: 14px;
	background: var(--ff-paper);
}
.ff-search-submit {
	padding: 13px 24px;
	background: var(--ff-black);
	color: var(--ff-gold);
	border: 0;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
}
.ff-search-submit:hover { background: var(--ff-gold); color: var(--ff-black); }

/* Empty state */
.ff-empty {
	padding: 64px 32px;
	text-align: center;
	color: var(--ff-muted);
	font-family: var(--ff-font-display);
	font-size: 22px;
	font-style: italic;
	background: var(--ff-sand);
}

/* 404 */
.ff-404 { padding: 120px 32px; text-align: center; }
.ff-404-number {
	font-family: var(--ff-font-display);
	font-size: 180px;
	font-style: italic;
	line-height: 1;
	color: var(--ff-gold);
	margin-bottom: 16px;
	font-weight: 400;
}
.ff-404-title {
	font-family: var(--ff-font-display);
	font-size: 40px;
	margin-bottom: 12px;
	font-weight: 400;
}
.ff-404-msg {
	font-size: 15px;
	color: var(--ff-muted);
	max-width: 480px;
	margin: 0 auto 28px;
}
.ff-404-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Sidebar widgets */
.ff-sidebar {
	padding: 24px;
	background: var(--ff-paper);
	border: 0.5px solid var(--ff-border);
}
.ff-sidebar .widget-title {
	font-family: var(--ff-font-body);
	font-size: 11px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--ff-muted);
	margin-bottom: 16px;
	font-weight: 600;
}
.ff-sidebar .widget { margin-bottom: 32px; }

/* =========================  RESPONSIVE  ========================= */

@media (max-width: 900px) {
	.ff-hero-collage { display: none; }
}

@media (max-width: 760px) {
	.ff-header-inner { padding: 16px 20px; gap: 12px; }
	.ff-nav-toggle { display: flex; }
	.ff-nav-menu-wrap {
		position: fixed;
		top: 60px; left: 0; right: 0; bottom: 0;
		background: var(--ff-paper);
		padding: 32px 24px;
		display: none;
	}
	.ff-nav-menu-wrap.is-open { display: block; }
	.ff-nav-primary { flex-direction: column; gap: 20px; }
	.ff-nav-primary a { font-size: 14px; }
	.ff-container { padding: 0 20px; }
	.ff-hero-home { padding: 64px 20px 48px; }
	.ff-hero-stats { gap: 24px; }
	.ff-hero-stats strong { font-size: 24px; }
	.ff-featured-talent, .ff-how-it-works, .ff-cta-join, .ff-stats-band { padding-left: 20px; padding-right: 20px; }
	.ff-profile-grid-4 { grid-template-columns: 1fr 1fr; gap: 16px 12px; }
	.ff-footer-inner { padding: 0 20px; }
}

@media (max-width: 480px) {
	.ff-hero-title { font-size: 36px; }
	.ff-404-number { font-size: 120px; }
	.ff-press-inner { gap: 12px; }
	.ff-press-name { font-size: 13px; }
	.ff-btn { padding: 12px 18px; font-size: 11px; }
}

/* =========================  RTL  ========================= */

body.rtl .ff-hero-collage { right: auto; left: 40px; }
body.rtl .ff-nav-primary a::after { left: auto; right: 0; }
body.rtl .ff-gold-italic { font-family: var(--ff-font-body); font-style: normal; }

/* =========================  PROFILE SINGLE WRAPPER  ========================= */

.ff-profile-single-wrap {
	max-width: var(--ff-container);
	margin: 0 auto;
	padding: 48px 32px 64px;
}
