:root {
	--sf-bg: #070908;
	--sf-surface: #0d120f;
	--sf-surface-raised: #131a16;
	--sf-surface-soft: #182019;
	--sf-text: #f6f1e7;
	--sf-muted: #aeb9b1;
	--sf-line: rgba(255, 255, 255, 0.1);
	--sf-gold: #c8a44d;
	--sf-gold-light: #f0d689;
	--sf-green: #45d483;
	--sf-turquoise: #35cbd0;
	--sf-danger: #ff7d7d;
	--sf-radius-sm: 12px;
	--sf-radius: 22px;
	--sf-radius-lg: 34px;
	--sf-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
	--sf-container: 1180px;
	--sf-transition: 180ms ease;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 10% 0%, rgba(53, 203, 208, 0.08), transparent 28rem),
		radial-gradient(circle at 88% 16%, rgba(200, 164, 77, 0.09), transparent 30rem),
		var(--sf-bg);
	color: var(--sf-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

body,
button,
input,
textarea,
select {
	-webkit-font-smoothing: antialiased;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: var(--sf-green);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.22em;
}

a:hover {
	color: var(--sf-turquoise);
}

button,
a,
input,
textarea,
select {
	transition:
		color var(--sf-transition),
		background-color var(--sf-transition),
		border-color var(--sf-transition),
		transform var(--sf-transition);
}

:focus-visible {
	outline: 3px solid var(--sf-turquoise);
	outline-offset: 4px;
}

h1,
h2,
h3,
h4 {
	margin-top: 0;
	color: var(--sf-text);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 600;
	line-height: 1.08;
	text-wrap: balance;
}

h1 {
	font-size: clamp(2.7rem, 8vw, 5.9rem);
	letter-spacing: -0.055em;
}

h2 {
	font-size: clamp(2rem, 5vw, 3.7rem);
	letter-spacing: -0.04em;
}

h3 {
	font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p {
	margin-top: 0;
	color: var(--sf-muted);
}

.container {
	width: min(calc(100% - 32px), var(--sf-container));
	margin-inline: auto;
}

.content-narrow {
	max-width: 820px;
}

.section {
	padding-block: clamp(72px, 10vw, 132px);
}

.section--soft {
	border-block: 1px solid var(--sf-line);
	background: rgba(255, 255, 255, 0.018);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	position: fixed;
	z-index: 100000;
	top: 16px;
	left: 16px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: var(--sf-text);
	color: var(--sf-bg);
	border-radius: var(--sf-radius-sm);
}

.eyebrow {
	margin-bottom: 18px;
	color: var(--sf-gold-light);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 13px 22px;
	border: 1px solid var(--sf-green);
	border-radius: 999px;
	background: var(--sf-green);
	color: #06110a;
	font-weight: 800;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}

.button:hover {
	border-color: var(--sf-turquoise);
	background: var(--sf-turquoise);
	color: #06110a;
	transform: translateY(-2px);
}

.button--gold {
	border-color: var(--sf-gold);
	background: linear-gradient(135deg, #f1d98e, var(--sf-gold) 48%, #98752f);
	color: #171004;
	box-shadow: 0 12px 36px rgba(200, 164, 77, 0.18);
}

.button--ghost {
	border-color: var(--sf-line);
	background: transparent;
	color: var(--sf-text);
}

.button--compact {
	min-height: 42px;
	padding: 10px 17px;
	font-size: 0.88rem;
}

.button--full {
	width: 100%;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 800;
	text-decoration: none;
}

.text-link::after {
	content: "→";
}

.site-shell {
	min-height: 100vh;
	overflow: hidden;
}

.site-header {
	position: relative;
	z-index: 50;
	border-bottom: 1px solid var(--sf-line);
	background: rgba(7, 9, 8, 0.88);
	backdrop-filter: blur(18px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	min-height: 108px;
	gap: 24px;
}

.site-brand {
	margin-right: auto;
}

.site-brand__logo {
	display: block;
	width: clamp(220px, 21vw, 310px);
	text-decoration: none;
}

.site-brand__logo img {
	width: 100%;
	height: auto;
}

.site-brand__logo--footer {
	width: min(100%, 390px);
}

.site-brand__text {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--sf-text);
	text-decoration: none;
}

.site-brand__text strong,
.site-brand__text small {
	display: block;
}

.site-brand__text strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.25rem;
	line-height: 1;
}

.site-brand__text small {
	margin-top: 4px;
	color: var(--sf-muted);
	font-size: 0.65rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.custom-logo {
	max-height: 58px;
	width: auto;
}

.site-navigation__list,
.footer-navigation {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-navigation a,
.footer-navigation a {
	color: var(--sf-text);
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: none;
}

.site-navigation a:hover,
.footer-navigation a:hover {
	color: var(--sf-green);
}

.site-nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 1px solid var(--sf-line);
	border-radius: 50%;
	background: transparent;
}

.site-nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 100%;
	height: 2px;
	margin: 4px 0;
	background: var(--sf-text);
}

.hero {
	position: relative;
	padding-block: clamp(78px, 12vw, 158px);
}

.hero::after {
	position: absolute;
	z-index: -1;
	inset: 12% -16% auto auto;
	width: min(60vw, 700px);
	aspect-ratio: 1;
	border: 1px solid rgba(200, 164, 77, 0.1);
	border-radius: 50%;
	content: "";
	box-shadow:
		0 0 0 70px rgba(200, 164, 77, 0.025),
		0 0 0 150px rgba(53, 203, 208, 0.018);
}

.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(380px, 0.75fr);
	align-items: center;
	gap: clamp(42px, 6vw, 84px);
}

.hero__content h1 {
	max-width: 900px;
	margin-bottom: 28px;
}

.hero__lead {
	max-width: 680px;
	margin-bottom: 34px;
	font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-search {
	display: flex;
	max-width: 720px;
	padding: 7px;
	border: 1px solid var(--sf-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.055);
	box-shadow: var(--sf-shadow);
}

.hero-search input,
.archive-search input {
	min-width: 0;
	flex: 1;
	padding: 12px 18px;
	border: 0;
	background: transparent;
	color: var(--sf-text);
	font: inherit;
}

.hero-search input::placeholder,
.archive-search input::placeholder {
	color: #7f8d83;
}

.hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 24px;
	margin-top: 28px;
	color: var(--sf-muted);
	font-size: 0.82rem;
}

.hero__trust span::before {
	margin-right: 8px;
	color: var(--sf-green);
	content: "●";
	font-size: 0.6rem;
}

.hero-card {
	position: relative;
	overflow: hidden;
	padding: clamp(30px, 3vw, 40px);
	border: 1px solid rgba(240, 214, 137, 0.24);
	border-radius: var(--sf-radius-lg);
	background:
		linear-gradient(145deg, rgba(200, 164, 77, 0.13), transparent 55%),
		var(--sf-surface-raised);
	box-shadow: var(--sf-shadow);
}

.hero-card h2 {
	font-size: clamp(2rem, 2.4vw, 2.6rem);
	overflow-wrap: normal;
	word-break: normal;
}

.hero-card__orb {
	position: absolute;
	top: -80px;
	right: -60px;
	width: 190px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, var(--sf-gold-light), #7b5c1e 55%, transparent 58%);
	opacity: 0.34;
	filter: blur(1px);
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 42px;
}

.section-heading h2 {
	margin-bottom: 0;
}

.steps-grid,
.profile-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.step-card,
.profile-card,
.content-panel {
	border: 1px solid var(--sf-line);
	border-radius: var(--sf-radius);
	background: var(--sf-surface);
}

.step-card {
	padding: 30px;
}

.step-card > span {
	display: inline-block;
	margin-bottom: 45px;
	color: var(--sf-gold-light);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 0.92rem;
}

.step-card p {
	margin-bottom: 0;
}

.profile-card {
	overflow: hidden;
}

.profile-card__media {
	display: block;
	aspect-ratio: 1.15;
	overflow: hidden;
	background: linear-gradient(145deg, var(--sf-surface-soft), #1a2a22);
}

.profile-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms ease;
}

.profile-card:hover .profile-card__media img {
	transform: scale(1.035);
}

.profile-card__placeholder,
.profile-hero__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	color: var(--sf-gold-light);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 5rem;
}

.profile-card__body {
	padding: 25px;
}

.profile-card__meta,
.profile-hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
}

.badge {
	display: inline-flex;
	padding: 6px 10px;
	border: 1px solid rgba(69, 212, 131, 0.26);
	border-radius: 999px;
	background: rgba(69, 212, 131, 0.07);
	color: #a4f6c2;
	font-size: 0.67rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.badge--gold {
	border-color: rgba(240, 214, 137, 0.32);
	background: rgba(200, 164, 77, 0.1);
	color: var(--sf-gold-light);
}

.profile-card__title {
	margin-bottom: 8px;
	font-size: 1.65rem;
}

.profile-card__title a {
	color: var(--sf-text);
	text-decoration: none;
}

.profile-card__subtitle {
	min-height: 1.65em;
	margin-bottom: 20px;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0;
	margin: 0 0 24px;
	list-style: none;
}

.tag-list li {
	padding: 6px 10px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.055);
	color: var(--sf-muted);
	font-size: 0.75rem;
}

.tag-list--large li {
	padding: 10px 14px;
	font-size: 0.9rem;
}

.callout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: clamp(32px, 6vw, 68px);
	border: 1px solid rgba(53, 203, 208, 0.18);
	border-radius: var(--sf-radius-lg);
	background:
		radial-gradient(circle at 90% 0%, rgba(53, 203, 208, 0.12), transparent 22rem),
		var(--sf-surface-raised);
}

.callout h2 {
	max-width: 750px;
	margin-bottom: 0;
}

.archive-hero {
	padding-block: clamp(66px, 9vw, 112px);
	border-bottom: 1px solid var(--sf-line);
	background: linear-gradient(145deg, rgba(53, 203, 208, 0.06), transparent 55%);
}

.archive-hero__inner {
	display: grid;
	grid-template-columns: 1fr minmax(280px, 420px);
	align-items: end;
	gap: 60px;
}

.archive-hero__hint {
	max-width: 390px;
	margin: 0 0 18px auto;
}

.archive-hero h1 {
	margin-bottom: 18px;
	font-size: clamp(2.7rem, 7vw, 5.2rem);
}

.archive-search label {
	display: block;
	margin-bottom: 10px;
	color: var(--sf-text);
	font-weight: 800;
}

.archive-search > div {
	display: flex;
	padding: 6px;
	border: 1px solid var(--sf-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
}

.filter-toggle {
	display: none;
	width: 100%;
	min-height: 48px;
	margin-bottom: 14px;
	border: 1px solid var(--sf-line);
	border-radius: var(--sf-radius-sm);
	background: var(--sf-surface-raised);
	color: var(--sf-text);
	font: inherit;
	font-weight: 800;
}

.profile-filters {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 34px;
	padding: 22px;
	border: 1px solid var(--sf-line);
	border-radius: var(--sf-radius);
	background: var(--sf-surface);
}

.profile-filters label {
	display: grid;
	gap: 7px;
	color: var(--sf-text);
	font-size: 0.82rem;
	font-weight: 700;
}

.profile-filters input[type="search"],
.profile-filters select {
	width: 100%;
	min-width: 0;
	min-height: 46px;
	padding: 10px 12px;
	border: 1px solid var(--sf-line);
	border-radius: 10px;
	background: #090c0a;
	color: var(--sf-text);
	font: inherit;
}

.profile-filters__modes {
	display: flex;
	grid-column: span 2;
	align-items: center;
	gap: 16px;
	padding: 0;
	border: 0;
}

.profile-filters__modes legend {
	width: 100%;
	margin-bottom: 7px;
	color: var(--sf-text);
	font-size: 0.82rem;
	font-weight: 700;
}

.profile-filters__modes label {
	display: flex;
	align-items: center;
	gap: 7px;
}

.profile-filters__modes input {
	width: 18px;
	height: 18px;
	accent-color: var(--sf-green);
}

.profile-filters__actions {
	display: flex;
	grid-column: span 3;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
}

.navigation.pagination {
	margin-top: 50px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.page-numbers {
	display: grid;
	min-width: 42px;
	min-height: 42px;
	place-items: center;
	padding: 8px 12px;
	border: 1px solid var(--sf-line);
	border-radius: 10px;
	color: var(--sf-text);
	text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
	border-color: var(--sf-green);
	background: var(--sf-green);
	color: #06110a;
}

.profile-hero {
	padding-block: clamp(58px, 9vw, 112px);
	border-bottom: 1px solid var(--sf-line);
	background:
		radial-gradient(circle at 12% 50%, rgba(200, 164, 77, 0.1), transparent 26rem),
		linear-gradient(155deg, rgba(53, 203, 208, 0.05), transparent 48%);
}

.profile-hero__grid {
	display: grid;
	grid-template-columns: minmax(220px, 360px) 1fr;
	align-items: center;
	gap: clamp(36px, 8vw, 92px);
}

.profile-hero__photo {
	position: relative;
	overflow: visible;
	aspect-ratio: 1;
	border: 1px solid rgba(240, 214, 137, 0.26);
	border-radius: 50%;
	background: var(--sf-surface-raised);
	box-shadow:
		0 0 0 12px rgba(200, 164, 77, 0.04),
		var(--sf-shadow);
}

.profile-hero__photo img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.profile-hero__content h1 {
	margin-bottom: 14px;
}

.profile-hero__title {
	margin-bottom: 24px;
	font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.profile-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.profile-share-status {
	min-height: 1.5em;
	margin: 10px 0 0;
	color: var(--sf-green);
	font-size: 0.82rem;
}

.video-section {
	border-block: 1px solid var(--sf-line);
	background:
		radial-gradient(circle at 80% 20%, rgba(200, 164, 77, 0.08), transparent 28rem),
		rgba(255, 255, 255, 0.012);
}

.video-gallery {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
	align-items: start;
	gap: 20px;
}

.video-card {
	overflow: hidden;
	padding: 12px;
	border: 1px solid var(--sf-line);
	border-radius: var(--sf-radius);
	background: var(--sf-surface);
}

.video-card--featured {
	grid-row: span 2;
}

.video-card__media {
	overflow: hidden;
	aspect-ratio: 16 / 9;
	border-radius: 14px;
	background: #000;
}

.video-card__media iframe,
.video-card__media video {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: cover;
}

.video-card h3 {
	margin: 14px 8px 7px;
	font-family: inherit;
	font-size: 1rem;
}

.profile-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 350px;
	align-items: start;
	gap: 28px;
	padding-block: clamp(60px, 9vw, 110px);
}

.profile-main,
.profile-sidebar,
.article-list {
	display: grid;
	gap: 22px;
}

.profile-sidebar {
	position: sticky;
	top: 24px;
}

.content-panel {
	padding: clamp(26px, 5vw, 46px);
}

.content-panel h2 {
	font-size: clamp(1.65rem, 3vw, 2.3rem);
}

.content-panel--accent {
	border-color: rgba(69, 212, 131, 0.2);
	background:
		linear-gradient(145deg, rgba(69, 212, 131, 0.06), transparent 58%),
		var(--sf-surface);
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 1.5em;
}

.timeline-list {
	display: grid;
	gap: 18px;
}

.timeline-list article {
	padding-left: 18px;
	border-left: 2px solid var(--sf-gold);
}

.timeline-list h3 {
	margin-bottom: 4px;
	font-family: inherit;
	font-size: 1rem;
}

.timeline-list p {
	margin-bottom: 0;
}

.timeline-list p span {
	margin-left: 8px;
	color: var(--sf-gold-light);
}

.session-list {
	display: grid;
	gap: 10px;
}

.session-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 17px 18px;
	border: 1px solid var(--sf-line);
	border-radius: var(--sf-radius-sm);
	color: var(--sf-text);
	text-decoration: none;
}

.session-list a:hover {
	border-color: var(--sf-turquoise);
	background: rgba(53, 203, 208, 0.05);
}

.session-list span {
	color: var(--sf-turquoise);
	font-size: 0.78rem;
	font-weight: 800;
}

.contact-list {
	display: grid;
	gap: 8px;
	padding: 0;
	margin: 22px 0 0;
	list-style: none;
}

.contact-list a {
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid var(--sf-line);
	color: var(--sf-text);
	text-decoration: none;
}

.disclaimer {
	padding: 22px;
	border: 1px solid var(--sf-line);
	border-radius: var(--sf-radius);
	background: rgba(255, 255, 255, 0.025);
}

.disclaimer strong {
	display: block;
	margin-bottom: 8px;
	color: var(--sf-gold-light);
}

.disclaimer p {
	margin-bottom: 0;
	font-size: 0.82rem;
}

.profile-report {
	padding: 20px;
	border: 1px solid var(--sf-line);
	border-radius: var(--sf-radius);
	background: rgba(255, 255, 255, 0.02);
}

.profile-report summary {
	color: var(--sf-muted);
	font-size: 0.85rem;
	font-weight: 700;
	cursor: pointer;
}

.profile-report form {
	display: grid;
	gap: 14px;
	margin-top: 20px;
}

.profile-report label {
	display: grid;
	gap: 6px;
	color: var(--sf-text);
	font-size: 0.82rem;
	font-weight: 700;
}

.profile-report input,
.profile-report select,
.profile-report textarea {
	width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid var(--sf-line);
	border-radius: 9px;
	background: #080b09;
	color: var(--sf-text);
	font: inherit;
}

.sifacilar-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.empty-state {
	grid-column: 1 / -1;
	padding: clamp(46px, 8vw, 88px);
	border: 1px dashed rgba(255, 255, 255, 0.16);
	border-radius: var(--sf-radius);
	text-align: center;
}

.empty-state > span {
	display: grid;
	width: 58px;
	aspect-ratio: 1;
	margin: 0 auto 24px;
	place-items: center;
	border-radius: 50%;
	background: rgba(200, 164, 77, 0.11);
	color: var(--sf-gold-light);
	font-size: 1.6rem;
}

.empty-state h2 {
	font-size: 2rem;
}

.page-header {
	margin-bottom: 35px;
}

.error-page {
	min-height: 65vh;
	display: grid;
	align-items: center;
}

.site-footer {
	padding-top: 72px;
	border-top: 1px solid var(--sf-line);
	background: #050706;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(280px, 1fr) auto;
	gap: 50px;
}

.site-footer__note {
	max-width: 560px;
	margin: 24px 0 0;
	font-size: 0.82rem;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding-block: 28px;
	margin-top: 58px;
	border-top: 1px solid var(--sf-line);
	color: #7f8d83;
	font-size: 0.76rem;
}

@media (max-width: 960px) {
	.site-header__cta {
		display: none;
	}

	.site-nav-toggle {
		display: block;
		order: 3;
	}

	.site-navigation {
		position: absolute;
		top: calc(100% + 1px);
		right: 16px;
		left: 16px;
		display: none;
		padding: 16px;
		border: 1px solid var(--sf-line);
		border-radius: var(--sf-radius);
		background: var(--sf-surface-raised);
		box-shadow: var(--sf-shadow);
	}

	.site-navigation.is-open {
		display: block;
	}

	.site-navigation__list {
		align-items: stretch;
		flex-direction: column;
		gap: 2px;
	}

	.site-navigation a {
		display: block;
		padding: 12px;
		border-radius: 9px;
	}

	.hero__grid,
	.archive-hero__inner,
	.profile-layout {
		grid-template-columns: 1fr;
	}

	.hero-card {
		max-width: 680px;
	}

	.profile-layout {
		max-width: 820px;
	}

	.profile-sidebar {
		position: static;
	}

	.video-gallery {
		grid-template-columns: 1fr 1fr;
	}

	.video-card--featured {
		grid-column: 1 / -1;
		grid-row: auto;
	}
}

@media (max-width: 760px) {
	.section {
		padding-block: 68px;
	}

	.steps-grid,
	.profile-grid {
		grid-template-columns: 1fr;
	}

	.archive-hero__hint {
		margin-left: 0;
	}

	.filter-toggle {
		display: block;
	}

	.filters-enhanced .profile-filters {
		display: none;
	}

	.filters-enhanced .profile-filters.is-open {
		display: grid;
	}

	.profile-filters {
		grid-template-columns: 1fr;
		padding: 16px;
	}

	.profile-filters__modes,
	.profile-filters__actions {
		grid-column: auto;
	}

	.profile-filters__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.video-gallery {
		display: flex;
		width: calc(100vw - 12px);
		margin-right: calc(50% - 50vw);
		padding-right: 24px;
		overflow-x: auto;
		scroll-padding-left: 12px;
		scroll-snap-type: x mandatory;
	}

	.video-card,
	.video-card--featured {
		flex: 0 0 min(86vw, 540px);
		scroll-snap-align: start;
	}

	.section-heading,
	.callout,
	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.profile-card {
		display: grid;
		grid-template-columns: 125px 1fr;
	}

	.profile-card__media {
		height: 100%;
		aspect-ratio: auto;
	}

	.profile-card__body {
		padding: 20px;
	}

	.profile-card__title {
		font-size: 1.35rem;
	}

	.profile-card__subtitle {
		min-height: 0;
	}

	.tag-list {
		display: none;
	}

	.profile-hero__grid {
		grid-template-columns: 150px 1fr;
		gap: 24px;
	}

	.profile-hero__content h1 {
		font-size: clamp(2.1rem, 9vw, 3.4rem);
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.container {
		width: min(calc(100% - 24px), var(--sf-container));
	}

	.site-header__inner {
		min-height: 94px;
		gap: 12px;
	}

	.site-brand__logo {
		width: min(50vw, 190px);
	}

	.hero {
		padding-block: 68px 82px;
	}

	.hero-search,
	.archive-search > div {
		align-items: stretch;
		flex-direction: column;
		border-radius: var(--sf-radius);
	}

	.hero-search .button,
	.archive-search .button {
		width: 100%;
	}

	.profile-card {
		grid-template-columns: 104px 1fr;
	}

	.profile-card__meta .badge--gold {
		display: none;
	}

	.profile-hero__grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.profile-hero__photo {
		width: 170px;
		margin-inline: auto;
	}

	.profile-hero__badges,
	.profile-actions {
		justify-content: center;
	}

	.profile-actions .button {
		width: 100%;
	}

	.content-panel {
		padding: 24px;
	}

	.footer-navigation {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* Sifacilar 1.0 — aydinlik ve sade rehber tasarimi. */
:root {
	--sf-bg: #faf7ef;
	--sf-surface: #ffffff;
	--sf-surface-raised: #ffffff;
	--sf-surface-soft: #eef5f0;
	--sf-text: #18392f;
	--sf-muted: #64746e;
	--sf-line: #dce5df;
	--sf-gold: #c99d3f;
	--sf-gold-light: #f2dfab;
	--sf-green: #0f7556;
	--sf-turquoise: #168b70;
	--sf-shadow: 0 20px 55px rgba(28, 66, 54, 0.11);
}

body {
	background: var(--sf-bg);
}

a { color: var(--sf-green); }
.section--soft { background: #f0f5f0; }

.site-header {
	border-bottom: 1px solid rgba(25, 67, 53, 0.1);
	background: rgba(250, 247, 239, 0.94);
	box-shadow: 0 8px 28px rgba(30, 61, 50, 0.05);
}

.site-navigation a,
.site-header__login { color: var(--sf-text); }
.site-navigation a:hover,
.site-header__login:hover { color: var(--sf-green); }
.site-nav-toggle { color: var(--sf-text); border-color: var(--sf-line); background: #fff; }

.button {
	border-color: var(--sf-green);
	background: var(--sf-green);
	color: #fff;
	box-shadow: 0 9px 22px rgba(15, 117, 86, 0.18);
}
.button:hover { border-color: #0b6047; background: #0b6047; color: #fff; transform: translateY(-1px); }
.button--gold { border-color: var(--sf-gold); background: var(--sf-gold); color: #17372e; }
.button--gold:hover { border-color: #b58931; background: #b58931; color: #17372e; }
.button--ghost { border-color: #b9cbc2; background: transparent; color: var(--sf-text); box-shadow: none; }

.hero--fresh {
	padding-block: clamp(64px, 8vw, 108px);
	background:
		radial-gradient(circle at 88% 12%, rgba(201, 157, 63, 0.15), transparent 24rem),
		linear-gradient(135deg, #fbf8ef 0%, #f1f5ec 100%);
}
.hero--fresh::before,
.hero--fresh::after { display: none; }
.hero--fresh .hero__grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(310px, .75fr); align-items: center; gap: clamp(36px, 6vw, 82px); }
.hero--fresh h1 { max-width: 830px; font-size: clamp(3rem, 6.6vw, 6rem); color: #143a2e; }
.hero__lead { max-width: 710px; font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.eyebrow { color: var(--sf-green); }

.hero-search,
.archive-search {
	border: 1px solid var(--sf-line);
	background: #fff;
	box-shadow: 0 18px 45px rgba(24, 57, 47, 0.1);
}
.hero-search {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(150px, .65fr) auto;
	align-items: end;
	border-radius: 20px;
}
.hero-search label { display: grid; gap: 1px; padding: 3px 12px 4px; }
.hero-search label + label { border-left: 1px solid var(--sf-line); }
.hero-search label span,
.archive-search label span { color: var(--sf-muted); }
.hero-search label span { font-size: .72rem; font-weight: 700; }
.hero-search input,
.hero-search select,
.archive-search input,
.archive-search select { color: var(--sf-text); background: transparent; }
.hero-search input,
.hero-search select { width: 100%; min-height: 32px; padding: 0; border: 0; font: inherit; }
.hero-search input::placeholder,
.archive-search input::placeholder { color: #8d9a95; }
.hero__trust span { color: var(--sf-muted); }
.hero__trust span::before { color: var(--sf-green); }

.hero-card {
	position: relative;
	padding: clamp(30px, 4vw, 48px);
	border: 1px solid #d7e3db;
	border-radius: var(--sf-radius-lg);
	background: #fff;
	box-shadow: var(--sf-shadow);
}
.hero-card::before { display: none; }
.hero-card h2 { font-size: clamp(2rem, 3vw, 3rem); }
.hero-card__mark { display: grid; width: 52px; height: 52px; margin-bottom: 24px; place-items: center; border-radius: 50%; background: #edf5ef; color: var(--sf-gold); font-size: 1.6rem; }
.hero-card__list { padding: 0; margin: 24px 0; list-style: none; color: var(--sf-text); }
.hero-card__list li { position: relative; padding: 8px 0 8px 28px; }
.hero-card__list li::before { position: absolute; left: 0; content: "✓"; color: var(--sf-green); font-weight: 800; }

.topic-strip { border-block: 1px solid var(--sf-line); background: #fff; }
.topic-strip > .container { display: flex; align-items: center; gap: 24px; padding-block: 18px; }
.topic-strip > .container > p { flex: 0 0 auto; margin: 0; font-weight: 800; }
.topic-strip__links { display: flex; flex-wrap: wrap; gap: 8px; }
.topic-strip p { color: var(--sf-text); }
.topic-strip__links a { padding: 7px 12px; border: 1px solid var(--sf-line); border-radius: 999px; background: #f8faf8; color: var(--sf-text); font-size: .84rem; text-decoration: none; }
.topic-strip__links a:hover { border-color: var(--sf-green); color: var(--sf-green); }

.section-heading--center { display: block; max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading--center h2 { margin-bottom: 18px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.step-card { padding: 32px; border: 1px solid var(--sf-line); border-radius: var(--sf-radius); background: #fff; box-shadow: 0 12px 35px rgba(25, 63, 51, .06); }
.step-card > span { display: inline-block; margin-bottom: 28px; color: var(--sf-gold); font-family: Georgia, serif; font-size: 1.45rem; }

.profile-card,
.content-panel,
.profile-filters,
.empty-state { border-color: var(--sf-line); background: #fff; box-shadow: 0 12px 35px rgba(24, 57, 47, 0.07); }
.profile-card:hover { border-color: #b9d0c3; box-shadow: var(--sf-shadow); }
.profile-card__media { background: #edf3ee; }
.badge { border-color: #d5e3db; background: #eef5f0; color: var(--sf-text); }
.badge--gold { border-color: #e6d49f; background: #fbf3dc; color: #725617; }

.archive-hero,
.profile-hero { background: linear-gradient(135deg, #edf5ef, #fbf6e7); border-bottom-color: var(--sf-line); }
.archive-hero::before,
.profile-hero::before { display: none; }
.profile-filters input,
.profile-filters select { border-color: var(--sf-line); background: #fff; color: var(--sf-text); }
.filter-toggle { border-color: var(--sf-line); background: #fff; color: var(--sf-text); }

.content-panel--accent { border-color: #e5d297; background: #fffaf0; }
.contact-list a { color: var(--sf-green); }
.disclaimer { border-color: #eadba9; background: #fff9e9; color: #665a39; }

.callout { border: 1px solid #c9dacd; background: linear-gradient(120deg, #154d3b, #0f7155); box-shadow: var(--sf-shadow); }
.callout h2,
.callout p { color: #fff; }
.callout .eyebrow { color: #f0d689; }

.site-footer { border-top: 1px solid #cfdcd3; background: #eaf1eb; }
.site-footer h2,
.site-footer h3,
.site-footer a { color: var(--sf-text); }
.site-footer p,
.site-footer__note { color: #607169; }
.site-footer__bottom { border-top-color: #cbd8d0; }

@media (max-width: 900px) {
	.hero--fresh .hero__grid { grid-template-columns: 1fr; }
	.hero-card { max-width: 680px; }
	.steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
	.hero--fresh { padding-block: 48px 62px; }
	.hero--fresh h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
	.hero-search { display: grid; grid-template-columns: 1fr; align-items: stretch; padding: 8px; }
	.hero-search label { padding: 10px 12px; }
	.hero-search label + label { border-top: 1px solid var(--sf-line); border-left: 0; }
	.hero-search .button { margin-top: 4px; }
	.topic-strip > .container { align-items: flex-start; flex-direction: column; gap: 10px; }
	.hero-card { padding: 26px; border-radius: 24px; }
	.step-card { padding: 26px; }
}

/* Sifacilar 1.1 — Mucizeyiz marka ailesi, profil kartlari ve tanitim alanlari. */
:root {
	--sf-bg: #fffdf9;
	--sf-surface-soft: #f8f3e9;
	--sf-green: #1da867;
	--sf-turquoise: #59a56d;
	--sf-gold: #e06b44;
	--sf-gold-light: #f1b89e;
}

.button--gold,
.button--coral { border-color: #e06b44; background: #e06b44; color: #fff; }
.button--gold:hover,
.button--coral:hover { border-color: #c95734; background: #c95734; color: #fff; }
.eyebrow { color: #178b57; }
.hero-card__mark { color: #e06b44; }
.topic-strip__links a:hover { border-color: #e06b44; color: #c95734; }

.home .profile-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.home .profile-card__body { padding: 20px; }
.profile-card__media { position: relative; aspect-ratio: 1 / 1; }
.profile-card__title { text-transform: uppercase; }
.profile-card__contact { display: flex; flex-wrap: wrap; gap: 6px 12px; margin: -8px 0 16px; color: var(--sf-muted); font-size: .82rem; }
.profile-card__contact a { color: var(--sf-text); font-weight: 700; text-decoration: none; }
.profile-hero__location { margin: -6px 0 18px; color: var(--sf-muted); font-weight: 700; }

.fdr-seal {
	position: absolute;
	right: -14px;
	bottom: -14px;
	display: grid;
	width: 88px;
	height: 88px;
	place-content: center;
	border: 3px solid #f1d28a;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 25%, #fff5c8, #d5a13a 55%, #745018 100%);
	color: #18392f;
	text-align: center;
	box-shadow: 0 9px 24px rgba(70, 50, 14, .24);
	z-index: 2;
}
.profile-hero__photo > .fdr-seal {
	width: 88px;
	height: 88px;
}

/* Profil sayfasi — ana sayfadaki bordo, yesil ve altin dili. */
.single-practitioner_profile .profile-hero {
	position: relative;
	overflow: hidden;
	border-bottom-color: rgba(225, 181, 73, .45);
	background:
		radial-gradient(circle at 12% 20%, transparent 0 74px, rgba(225,181,73,.12) 75px 76px, transparent 77px),
		radial-gradient(circle at 88% 80%, transparent 0 110px, rgba(225,181,73,.1) 111px 112px, transparent 113px),
		linear-gradient(135deg, #4b0713 0%, #28040b 58%, #150407 100%);
}
.single-practitioner_profile .profile-hero::before {
	display: block;
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(225,181,73,.12) 1px, transparent 1px);
	background-size: 28px 28px;
	content: "";
	opacity: .28;
}
.single-practitioner_profile .profile-hero__grid { position: relative; z-index: 1; }
.single-practitioner_profile .profile-hero h1,
.single-practitioner_profile .profile-hero__title { color: #fff8e8; }
.single-practitioner_profile .profile-hero .eyebrow,
.single-practitioner_profile .profile-hero__location { color: #e7bd55; }
.single-practitioner_profile .profile-hero__photo { border: 2px solid #dcb34e; background: #26070d; box-shadow: 0 20px 55px rgba(0,0,0,.34); }
.single-practitioner_profile .profile-hero .badge { border-color: rgba(232,190,87,.55); background: rgba(255,255,255,.08); color: #fff7e5; }
.single-practitioner_profile .profile-hero .badge--gold { background: #e1b549; color: #1b0a0d; }
.single-practitioner_profile .profile-hero .button { border-color: #e1b549; background: #e1b549; color: #1b0a0d; }
.single-practitioner_profile .profile-hero .button:hover { border-color: #f2cf70; background: #f2cf70; color: #130609; }

.single-practitioner_profile .profile-layout { align-items: start; }
.single-practitioner_profile .profile-main > .content-panel,
.single-practitioner_profile .profile-sidebar > .content-panel,
.single-practitioner_profile .profile-sidebar > .disclaimer {
	border: 1px solid rgba(225,181,73,.48);
	box-shadow: 0 18px 42px rgba(29, 7, 11, .14);
}
.single-practitioner_profile .profile-main > .content-panel:nth-of-type(odd),
.single-practitioner_profile .profile-sidebar > .content-panel {
	background: linear-gradient(145deg, #4b0713, #27050b);
	color: #fdf4df;
}
.single-practitioner_profile .profile-main > .content-panel:nth-of-type(even),
.single-practitioner_profile .profile-sidebar > .disclaimer {
	background: linear-gradient(145deg, #073c2e, #03261e);
	color: #f7f1df;
}
.single-practitioner_profile .content-panel h2,
.single-practitioner_profile .content-panel h3,
.single-practitioner_profile .disclaimer strong,
.single-practitioner_profile .content-panel .eyebrow { color: #e7bd55; }
.single-practitioner_profile .content-panel p,
.single-practitioner_profile .content-panel li,
.single-practitioner_profile .disclaimer p { color: #f7f1df; }
.single-practitioner_profile .tag-list li { border-color: rgba(231,189,85,.5); background: rgba(255,255,255,.08); color: #fff8e8; }
.single-practitioner_profile .timeline-list article,
.single-practitioner_profile .session-list a { border-color: rgba(231,189,85,.3); background: rgba(255,255,255,.07); color: #fff8e8; }
.single-practitioner_profile .contact-list a { color: #f0c85e; }
.single-practitioner_profile .profile-sidebar .button { background: #e1b549; color: #19090c; }

.profile-media-grid,
.profile-article-grid,
.profile-event-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.profile-media-card,
.profile-article-card,
.profile-event-card {
	overflow: hidden;
	border: 1px solid rgba(231, 189, 85, .3);
	border-radius: 16px;
	background: rgba(255, 255, 255, .07);
}

.profile-media-card h3,
.profile-article-card,
.profile-event-card__body { padding: 16px; }
.profile-media-card h3 { margin: 0; font-size: 1.1rem; }
.profile-video { display: grid; width: 100%; aspect-ratio: 16 / 9; place-items: center; background: #19090c; color: #e7bd55; text-decoration: none; }
.profile-video iframe { width: 100%; height: 100%; border: 0; }
.profile-video--link span { font-size: 2.4rem; }
.profile-video--link small { font-weight: 800; }
.profile-article-card h3,
.profile-event-card h3 { margin: 0 0 10px; }
.profile-article-card p { margin: 0 0 14px; }
.profile-article-card a,
.profile-event-card a { color: #f0c85e; font-weight: 800; text-decoration: none; }
.profile-event-card__image { display: grid; aspect-ratio: 16 / 10; place-items: center; overflow: hidden; background: #24090f; color: #e7bd55; font-size: 2rem; }
.profile-event-card__image img { width: 100%; height: 100%; object-fit: cover; }
.profile-event-card time { display: block; margin-bottom: 7px; color: #e7bd55; font-size: .78rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }

@media (max-width: 640px) {
	.profile-media-grid,
	.profile-article-grid,
	.profile-event-grid { grid-template-columns: 1fr; }
}

.profile-about__content { position: relative; max-height: 9.2em; overflow: hidden; }
.profile-about__content::after { position: absolute; right: 0; bottom: 0; left: 0; height: 4em; background: linear-gradient(transparent, #2d050c); content: ""; pointer-events: none; }
.profile-about.is-open .profile-about__content { max-height: none; }
.profile-about.is-open .profile-about__content::after { display: none; }
.profile-about__toggle { padding: 0; margin-top: 14px; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: #edc65e; font: inherit; font-weight: 800; cursor: pointer; }
.profile-about__toggle:hover { color: #fff1c2; }
.fdr-seal::before,
.fdr-seal::after { position: absolute; inset: 5px; border: 1px solid rgba(24,57,47,.55); border-radius: 50%; content: ""; }
.fdr-seal::after { inset: 9px; border-style: dashed; }
.fdr-seal strong { font-family: Georgia, serif; font-size: 1.3rem; letter-spacing: .08em; line-height: 1; }
.fdr-seal small { margin-top: 4px; font-size: .52rem; font-weight: 900; letter-spacing: .16em; }
.fdr-seal--card { right: 9px; bottom: 9px; width: 66px; height: 66px; border-width: 2px; }
.fdr-seal--card strong { font-size: 1rem; }
.fdr-seal--card small { font-size: .42rem; }

.network-section { background: #fff; }
.network-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.network-card { display: block; min-height: 300px; padding: clamp(30px, 5vw, 54px); border-radius: 28px; color: #fff; text-decoration: none; box-shadow: var(--sf-shadow); }
.network-card:hover { color: #fff; transform: translateY(-3px); }
.network-card--academy { background: linear-gradient(135deg, #e06b44, #c94f34); }
.network-card--publishing { background: linear-gradient(135deg, #59a56d, #16885a); }
.network-card span { font-size: .72rem; font-weight: 900; letter-spacing: .16em; }
.network-card h3 { margin: 38px 0 14px; color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); }
.network-card p { max-width: 480px; color: rgba(255,255,255,.88); }
.network-card strong { display: inline-block; margin-top: 18px; }

.book-feature { overflow: hidden; background: #f4efe5; }
.book-feature__grid { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); align-items: center; gap: clamp(40px, 8vw, 110px); }
.book-feature__cover { max-width: 410px; padding: 18px; border-radius: 24px; background: #fff; box-shadow: 0 28px 65px rgba(61,43,25,.16); transform: rotate(-2deg); }
.book-feature__cover img { width: 100%; border-radius: 13px; }
.book-feature__content h2 { font-size: clamp(3rem, 7vw, 6rem); }
.book-feature__content p:not(.eyebrow) { max-width: 650px; font-size: 1.08rem; }

@media (max-width: 900px) {
	.network-grid,
	.book-feature__grid { grid-template-columns: 1fr; }
	.book-feature__cover { width: min(76vw, 390px); margin-inline: auto; }
}

@media (max-width: 760px) {
	.home .profile-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; }
	.home .profile-card { display: block; min-width: 0; border-radius: 12px; }
	.home .profile-card__body { padding: 8px 6px 10px; }
	.home .profile-card__meta,
	.home .profile-card .tag-list,
	.home .profile-card .text-link { display: none; }
	.home .profile-card__title { margin-bottom: 4px; font-size: clamp(.58rem, 2.7vw, .78rem); line-height: 1.15; overflow-wrap: anywhere; }
	.home .profile-card__subtitle { margin-bottom: 8px; font-size: .58rem; line-height: 1.25; }
	.home .profile-card__contact { display: block; margin: 0; font-size: .54rem; line-height: 1.35; }
	.home .profile-card__contact span,
	.home .profile-card__contact a { display: block; overflow-wrap: anywhere; }
	.home .fdr-seal--card { right: 3px; bottom: 3px; width: 34px; height: 34px; border-width: 1px; }
	.home .fdr-seal--card::before { inset: 3px; }
	.home .fdr-seal--card::after { display: none; }
	.home .fdr-seal--card strong { font-size: .55rem; }
	.home .fdr-seal--card small { margin-top: 1px; font-size: .25rem; }
	.network-grid { gap: 14px; }
	.network-card { min-height: 240px; padding: 26px; border-radius: 20px; }
	.book-feature__content h2 { font-size: 3rem; }
}

/* Sifacilar 1.2 — gold, bordo ve koyu yesil ana sayfa revizyonu. */
:root {
	--sf-gold: #d8a83e;
	--sf-gold-light: #f0d27b;
	--sf-burgundy: #37070d;
	--sf-burgundy-deep: #1d0307;
	--sf-deep-green: #032f25;
	--sf-deep-green-2: #011d17;
}

.site-header__contact {
	color: var(--sf-text);
	font-size: .9rem;
	font-weight: 800;
	text-decoration: none;
}
.site-header__contact:hover { color: #a77918; }

.button,
.button--gold,
.button--coral {
	border-color: #e0b34e;
	background: linear-gradient(135deg, #f0cc70, #c58b20);
	color: #170d03;
	box-shadow: 0 9px 24px rgba(201, 149, 40, .25);
}
.button:hover,
.button--gold:hover,
.button--coral:hover {
	border-color: #f2d27e;
	background: linear-gradient(135deg, #f6d984, #d49b2f);
	color: #170d03;
}
.button--ghost { border-color: #c99b37; background: transparent; color: var(--sf-text); box-shadow: none; }

.hero--fresh,
.intro-section,
.network-section,
.book-feature { position: relative; isolation: isolate; overflow: hidden; }
.hero--fresh::after,
.intro-section::after,
.network-section::after,
.book-feature::after {
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at center, transparent 0 22px, rgba(222,174,68,.12) 23px 24px, transparent 25px),
		radial-gradient(circle at center, transparent 0 44px, rgba(222,174,68,.08) 45px 46px, transparent 47px);
	background-size: 92px 80px;
	content: "";
	pointer-events: none;
	z-index: -1;
}

.hero--fresh {
	padding-block: clamp(38px, 5vw, 62px);
	background:
		radial-gradient(circle at 5% 45%, rgba(218,169,59,.20), transparent 28%),
		linear-gradient(135deg, var(--sf-burgundy-deep), #4a0912 58%, #260409);
	color: #fff8e7;
}
.hero--fresh .hero__grid { grid-template-columns: minmax(0, 1.45fr) minmax(280px, .65fr); gap: clamp(26px, 4vw, 58px); }
.hero--fresh h1 { max-width: 760px; color: #fff8e7; font-size: clamp(2.7rem, 5.1vw, 4.7rem); line-height: .98; }
.hero--fresh h1::first-line { color: var(--sf-gold-light); }
.hero--fresh .eyebrow,
.hero--fresh .hero__trust span::before { color: var(--sf-gold-light); }
.hero--fresh .hero__lead,
.hero--fresh .hero__trust span { color: rgba(255,248,231,.88); }
.hero-search { border-color: rgba(231,185,80,.7); background: rgba(17,3,6,.72); box-shadow: 0 16px 35px rgba(0,0,0,.24); }
.hero-search label + label { border-left-color: rgba(231,185,80,.35); }
.hero-search label span { color: var(--sf-gold-light); }
.hero-search input,
.hero-search select { color: #fff; }
.hero-search select option { color: #111; }
.hero-search input::placeholder { color: rgba(255,255,255,.55); }
.hero-card { padding: clamp(24px, 3vw, 34px); border-color: rgba(231,185,80,.65); background: rgba(25,3,7,.80); color: #fff8e7; box-shadow: 0 20px 45px rgba(0,0,0,.26); }
.hero-card h2 { color: #fff8e7; font-size: clamp(1.8rem, 2.7vw, 2.55rem); }
.hero-card p,
.hero-card__list { color: rgba(255,248,231,.84); }
.hero-card__mark { width: 42px; height: 42px; margin-bottom: 15px; background: rgba(216,168,62,.12); color: var(--sf-gold-light); }
.hero-card__list { margin: 14px 0 18px; }
.hero-card__list li { padding-block: 5px; }
.hero-card__list li::before { color: var(--sf-gold-light); }
.hero-card { padding: 20px 24px; }
.hero-card__mark { display: none; }
.hero-card .eyebrow { margin-bottom: 8px; }
.hero-card h2 { margin-bottom: 12px; font-size: clamp(1.7rem, 2.3vw, 2.15rem); line-height: 1.02; }
.hero-card > p:not(.eyebrow) { margin-bottom: 8px; font-size: .9rem; line-height: 1.45; }
.hero-card__list { margin: 6px 0 10px; font-size: .9rem; }
.hero-card__list li { padding-block: 3px; }
.hero-card .button { min-height: 44px; }

.intro-section.section { padding-block: clamp(48px, 5vw, 68px); background: linear-gradient(145deg, var(--sf-deep-green-2), var(--sf-deep-green)); color: #fff; }
.intro-section .section-heading h2,
.intro-section .step-card h3 { color: #fff8e7; }
.intro-section .section-heading h2 { margin-bottom: 10px; font-size: clamp(2.25rem, 4vw, 3.2rem); line-height: 1; }
.intro-section .section-heading .eyebrow { margin-bottom: 10px; }
.intro-section .section-heading > p:last-child { margin-bottom: 0; }
.intro-section .section-heading p { color: rgba(255,255,255,.78); }
.intro-section .eyebrow { color: var(--sf-gold-light); }
.intro-section .steps-grid { gap: 16px; margin-top: 30px; }
.intro-section .step-card { padding: 24px 26px; border-color: rgba(224,179,78,.72); background: rgba(2,29,23,.58); box-shadow: 0 12px 28px rgba(0,0,0,.18); text-align: center; }
.intro-section .step-card > span { margin-bottom: 10px; color: var(--sf-gold-light); }
.intro-section .step-card p { color: rgba(255,255,255,.78); }

.home .section--soft { padding-block: clamp(48px, 5vw, 70px); }
.home .section--soft .container { max-width: 1040px; }
.home .profile-grid { gap: 14px; }
.home .profile-card { max-width: 235px; }
.home .profile-card__body { padding: 14px; }
.home .profile-card .tag-list,
.home .profile-card .text-link { display: none; }
.home .profile-card__subtitle { margin-bottom: 10px; }
.home .profile-card__contact { margin: 0; }

.network-section.section { padding-block: clamp(48px, 5vw, 68px); background: linear-gradient(145deg, #260407, #160305); color: #fff; }
.network-section .section-heading h2 { color: #fff8e7; font-size: clamp(2.2rem, 4vw, 3.5rem); }
.network-section .section-heading p { color: rgba(255,255,255,.76); }
.network-section .eyebrow { color: var(--sf-gold-light); }
.network-grid { max-width: 980px; margin: 28px auto 0; gap: 18px; }
.network-card { min-height: 215px; padding: 24px 28px; border: 1px solid rgba(224,179,78,.8); border-radius: 22px; }
.network-card--academy { background: linear-gradient(135deg, #4c0712, #260308); }
.network-card--publishing { background: linear-gradient(135deg, #064434, #01241c); }
.network-card__logo { display: block; width: 118px; height: 58px; margin-bottom: 9px; object-fit: contain; object-position: left center; }
.network-card__logo--publishing { width: 150px; }
.network-card h3 { margin: 13px 0 8px; color: #fff8e7; font-size: clamp(1.25rem, 2.5vw, 2rem); overflow-wrap: anywhere; }
.network-card p { margin: 0; font-size: .92rem; }
.network-card strong { margin-top: 12px; color: var(--sf-gold-light); }

.book-feature.section { padding-block: clamp(46px, 5vw, 68px); background: linear-gradient(135deg, #210306, #430911 55%, #1c0306); color: #fff; }
.book-feature__grid { grid-template-columns: minmax(180px, .52fr) minmax(0, 1.48fr); gap: clamp(32px, 6vw, 74px); max-width: 980px; }
.book-feature__cover { max-width: 245px; padding: 10px; border: 1px solid rgba(224,179,78,.7); border-radius: 16px; background: rgba(255,255,255,.08); transform: rotate(-1deg); }
.book-feature__content h2 { color: #fff8e7; font-size: clamp(2.7rem, 5vw, 4.6rem); }
.book-feature__content .eyebrow { color: var(--sf-gold-light); }
.book-feature__content p:not(.eyebrow) { color: rgba(255,255,255,.82); }
.book-feature__content .book-feature__announcement { margin-bottom: 10px; color: var(--sf-gold-light); font-size: 1.12rem; font-weight: 800; }
.book-feature__logo { width: min(220px, 70%); max-height: 78px; margin-bottom: 8px; object-fit: contain; object-position: left center; }

.site-footer { background: #071f19; border-top-color: #b88a2d; }
.site-footer__grid { grid-template-columns: 1.15fr .7fr 1fr; gap: 34px; }
.site-footer h2,
.site-footer h3,
.site-footer a { color: #f3d784; }
.site-footer p,
.site-footer__note { color: rgba(255,255,255,.68); }
.site-footer__contact { display: grid; align-content: start; gap: 8px; }
.site-footer__contact h2 { margin: 0 0 5px; font-size: 1.2rem; }
.site-footer__contact a { overflow-wrap: anywhere; text-decoration: none; }
.site-footer__platform-note { padding-block: 18px; border-top: 1px solid rgba(216,168,62,.28); color: #f0dca1; text-align: center; font-size: .9rem; }
.site-footer__bottom { border-top-color: rgba(216,168,62,.28); color: rgba(255,255,255,.65); }

@media (max-width: 1080px) {
	.site-header__contact { display: none; }
}
@media (max-width: 900px) {
	.hero--fresh .hero__grid { grid-template-columns: 1fr; }
	.hero-card { max-width: none; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
	.hero--fresh { padding-block: 34px 42px; }
	.hero--fresh h1 { font-size: clamp(2.4rem, 12vw, 3.6rem); }
	.intro-section .steps-grid { grid-template-columns: 1fr; }
	.home .profile-card { max-width: none; }
	.network-card { min-height: 205px; padding: 22px; }
	.book-feature__grid { grid-template-columns: minmax(115px, .55fr) minmax(0, 1.45fr); gap: 20px; }
	.book-feature__cover { width: auto; padding: 6px; }
	.book-feature__content h2 { font-size: clamp(1.9rem, 8vw, 3rem); }
	.book-feature__content p:not(.eyebrow) { font-size: .88rem; }
	.book-feature__logo { width: 150px; }
	.site-footer__grid { grid-template-columns: 1fr; }
}
@media (min-width: 721px) and (max-width: 900px) {
	.hero--fresh .hero__grid { grid-template-columns: minmax(0, 1.45fr) minmax(245px, .65fr); gap: 22px; }
	.intro-section .steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.network-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Sifacilar 1.2.6 — sade renkler, yeni logo ve sağlam mobil kartlar. */
.hero--fresh::after,
.intro-section::after,
.network-section::after,
.book-feature::after,
.single-practitioner_profile .profile-hero::before {
	display: none;
}

.hero--fresh,
.network-section.section,
.book-feature.section,
.single-practitioner_profile .profile-hero,
.single-practitioner_profile .profile-main > .content-panel:nth-of-type(odd),
.single-practitioner_profile .profile-sidebar > .content-panel,
.network-card--academy {
	background: #37070d;
}

.intro-section.section,
.single-practitioner_profile .profile-main > .content-panel:nth-of-type(even),
.single-practitioner_profile .profile-sidebar > .disclaimer,
.network-card--publishing,
.site-footer {
	background: #02271f;
}

.site-brand__logo {
	width: clamp(220px, 21vw, 310px);
	height: 88px;
	overflow: hidden;
}

.site-brand__logo img,
.custom-logo {
	display: block;
	width: 100%;
	max-width: none;
	max-height: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left center;
	transform: none;
}

.site-brand__logo--footer {
	width: min(100%, 340px);
	height: 92px;
}

.home .profile-grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
}

.home .profile-card,
.home .profile-card__media {
	min-width: 0;
	width: 100%;
}

.home .profile-card__media {
	height: auto;
	aspect-ratio: 1 / 1;
}

@media (min-width: 761px) {
	.home .profile-card__body { padding: 10px; }
	.home .profile-card__meta { gap: 4px; margin-bottom: 5px; }
	.home .profile-card__meta .badge:not(.badge--gold) { display: none; }
	.home .profile-card__meta .badge { padding: 3px 5px; font-size: .58rem; }
	.home .profile-card__title {
		display: -webkit-box;
		margin-bottom: 4px;
		overflow: hidden;
		font-size: .9rem;
		line-height: 1.15;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}
	.home .profile-card__subtitle {
		display: -webkit-box;
		margin: 0 0 5px;
		overflow: hidden;
		font-size: .7rem;
		line-height: 1.25;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
	}
	.home .profile-card__contact { gap: 2px 6px; font-size: .66rem; line-height: 1.25; }
}

@media (max-width: 760px) {
	.home .profile-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 7px;
	}

	.home .profile-card,
	.home .profile-card__media {
		width: 100% !important;
		max-width: 100% !important;
	}

	.home .profile-card__media {
		height: auto !important;
		aspect-ratio: 1 / 1 !important;
	}

	.site-brand__logo {
		width: min(58vw, 215px);
		height: 72px;
	}

	.site-brand__logo--footer {
		width: min(82vw, 300px);
		height: 82px;
	}

	.mza-ai-shell {
		z-index: 2147483000 !important;
		bottom: calc(18px + env(safe-area-inset-bottom)) !important;
	}

	.mza-ai-shell .mza-ai-launch {
		display: flex !important;
		opacity: 1;
		visibility: visible;
	}
}

.home-ai-showcase.section {
	padding-block: clamp(30px, 4vw, 54px);
	background: #170307;
}

.home-ai-showcase__button {
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
	border: 1px solid rgba(224, 179, 78, .75);
	border-radius: 22px;
	background: #37070d;
	box-shadow: 0 20px 52px rgba(20, 2, 6, .3);
	cursor: pointer;
}

.home-ai-showcase__button img {
	display: block;
	width: 100%;
	height: auto;
}

.home-ai-showcase__button:hover,
.home-ai-showcase__button:focus-visible {
	border-color: #f0d27b;
	transform: translateY(-2px);
}

.home .mza-ai-home-promo {
	display: none;
}

.profile-card__votes {
	margin-left: auto;
	color: #8d1829;
	font-size: .72rem;
	font-weight: 800;
	white-space: nowrap;
}

.profile-vote { display: inline-flex; margin: 0; }
.button--vote { border-color: #e1b549; background: #fff7df; color: #4e0b15; }
.button--vote:hover { border-color: #f0cc68; background: #f0cc68; color: #26060b; }
.button--vote:disabled { cursor: default; opacity: .8; }
.profile-vote__status { margin: 10px 0 0; color: #f0cc68; font-weight: 700; }

.profile-carousel { min-width: 0; }
.profile-carousel__track {
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}
.profile-carousel__track::-webkit-scrollbar { display: none; }
.profile-carousel__slide {
	flex: 0 0 100%;
	width: 100%;
	min-width: 100%;
	scroll-snap-align: start;
}
.profile-carousel__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 20px;
	color: #063b2d;
	font-size: .84rem;
	font-weight: 800;
}
.profile-carousel__controls button {
	display: grid;
	width: 42px;
	height: 42px;
	padding: 0;
	place-items: center;
	border: 1px solid #d8ae46;
	border-radius: 50%;
	background: #e5bc55;
	color: #24070c;
	font-size: 1.2rem;
	cursor: pointer;
}
.profile-carousel__controls button:hover { background: #f0cf76; }
.profile-carousel__controls button:disabled { cursor: default; opacity: .4; }

@media (min-width: 1101px) {
	.post-type-archive-practitioner_profile .profile-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		gap: 12px;
	}

	.post-type-archive-practitioner_profile .profile-card__body { padding: 10px; }
	.post-type-archive-practitioner_profile .profile-card__meta { gap: 4px; margin-bottom: 5px; }
	.post-type-archive-practitioner_profile .profile-card__meta .badge:not(.badge--gold) { display: none; }
	.post-type-archive-practitioner_profile .profile-card__meta .badge { padding: 3px 5px; font-size: .58rem; }
	.post-type-archive-practitioner_profile .profile-card__title { margin-bottom: 4px; font-size: .9rem; line-height: 1.15; }
	.post-type-archive-practitioner_profile .profile-card__subtitle { margin: 0 0 5px; font-size: .7rem; line-height: 1.25; }
	.post-type-archive-practitioner_profile .profile-card__contact { margin: 0 0 7px; gap: 2px 6px; font-size: .66rem; line-height: 1.25; }
	.post-type-archive-practitioner_profile .profile-card .tag-list,
	.post-type-archive-practitioner_profile .profile-card .text-link { display: none; }
}

@media (min-width: 761px) and (max-width: 1100px) {
	.post-type-archive-practitioner_profile .profile-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
	.home-ai-showcase.section {
		padding-block: 24px;
	}

	.home-ai-showcase__button {
		border-radius: 14px;
	}

	.post-type-archive-practitioner_profile .profile-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 7px;
	}

	.post-type-archive-practitioner_profile .profile-card,
	.post-type-archive-practitioner_profile .profile-card__media {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.post-type-archive-practitioner_profile .profile-card__media { height: auto; aspect-ratio: 1 / 1; }
	.post-type-archive-practitioner_profile .profile-card__body { padding: 7px 6px 9px; }
	.post-type-archive-practitioner_profile .profile-card__meta .badge:not(.badge--gold),
	.post-type-archive-practitioner_profile .profile-card .tag-list,
	.post-type-archive-practitioner_profile .profile-card .text-link { display: none; }
	.post-type-archive-practitioner_profile .profile-card__title { font-size: .72rem; line-height: 1.15; overflow-wrap: anywhere; }
	.post-type-archive-practitioner_profile .profile-card__subtitle,
	.post-type-archive-practitioner_profile .profile-card__contact,
	.post-type-archive-practitioner_profile .profile-card__votes { font-size: .56rem; }
}
