/* =========================================================
   ADAL Premium — main.css
   Warm editorial + soft science. Ankara only.
   ========================================================= */

:root {
	--ink: #16110e;
	--ink-2: #33291f;
	--muted: #6e635b;
	--paper: #f7f2eb;
	--paper-2: #fffcf7;
	--paper-3: #efe6da;
	--line: rgba(22, 17, 14, 0.1);
	--line-2: rgba(22, 17, 14, 0.06);

	--orange: #ff7417;
	--orange-2: #ff9b4d;
	--orange-soft: rgba(255, 116, 23, 0.14);
	--deep: #14303f;
	--deep-2: #1d4356;
	--teal: #4e7a82;
	--sage: #dbe6dc;

	--radius: 20px;
	--radius-sm: 14px;
	--radius-lg: 30px;
	--radius-pill: 999px;

	--shadow-1: 0 18px 44px rgba(35, 25, 16, 0.08);
	--shadow-2: 0 34px 90px rgba(35, 25, 16, 0.16);
	--shadow-3: 0 50px 130px rgba(10, 8, 6, 0.3);

	--ease: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

	--font-body: "Manrope", "Segoe UI", Arial, sans-serif;
	--font-display: "Playfair Display", Georgia, "Times New Roman", serif;

	--nav-h: 68px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.menu-open,
body.is-loading {
	overflow: hidden;
}

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

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

button {
	font: inherit;
}

::selection {
	background: var(--orange);
	color: #fff;
}

:focus-visible {
	outline: 2px solid var(--orange);
	outline-offset: 3px;
	border-radius: 4px;
}

/* ---------------------------------------------------------
   Accessibility helpers
   --------------------------------------------------------- */

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed !important;
	top: 14px;
	left: 14px;
	z-index: 9997;
	width: auto;
	height: auto;
	margin: 0;
	padding: 12px 20px;
	clip: auto;
	clip-path: none;
	border-radius: var(--radius-pill);
	background: var(--ink);
	color: #fff;
	font-weight: 800;
}

/* ---------------------------------------------------------
   Layout primitives
   --------------------------------------------------------- */

.container {
	width: min(1200px, calc(100% - 48px));
	margin-inline: auto;
}

.container--narrow {
	width: min(940px, calc(100% - 48px));
}

.section {
	position: relative;
	padding: clamp(72px, 9vw, 132px) 0;
}

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

h1,
h2,
h3 {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -0.015em;
	color: var(--ink);
}

h1 {
	margin-bottom: 22px;
	max-width: 15ch;
	font-size: clamp(2.8rem, 5.3vw, 5.1rem);
	line-height: 1.04;
}

h2 {
	margin-bottom: 18px;
	font-size: clamp(2.05rem, 4vw, 3.7rem);
	line-height: 1.06;
}

h3 {
	font-family: var(--font-body);
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: -0.005em;
}

p {
	color: var(--muted);
	font-size: 1.02rem;
	line-height: 1.75;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 18px;
	color: var(--orange);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.eyebrow::before {
	content: "";
	width: 26px;
	height: 1px;
	background: currentColor;
	opacity: 0.7;
}

.eyebrow--center {
	justify-content: center;
}

.section-heading {
	max-width: 780px;
	margin-bottom: clamp(34px, 5vw, 62px);
}

.section-heading p:last-child {
	max-width: 60ch;
	margin-bottom: 0;
}

.section-heading--center {
	margin-inline: auto;
	text-align: center;
}

/* ---------------------------------------------------------
   Ambient layers: grain, cursor, progress, preloader
   --------------------------------------------------------- */

.grain {
	position: fixed;
	inset: -50%;
	z-index: 9990;
	pointer-events: none;
	opacity: 0.045;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	animation: grain-shift 7s steps(6) infinite;
}

@keyframes grain-shift {
	0% { transform: translate(0, 0); }
	20% { transform: translate(-6%, 4%); }
	40% { transform: translate(4%, -5%); }
	60% { transform: translate(-3%, 6%); }
	80% { transform: translate(5%, 3%); }
	100% { transform: translate(0, 0); }
}

.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9995;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), var(--orange-2) 55%, var(--teal));
	transform: scaleX(0);
	transform-origin: left center;
	pointer-events: none;
}

.cursor,
.cursor-dot {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9996;
	pointer-events: none;
	border-radius: 50%;
	opacity: 0;
	transition: opacity 300ms var(--ease-soft);
}

.cursor {
	width: 38px;
	height: 38px;
	margin: -19px 0 0 -19px;
	border: 1.5px solid var(--orange);
	transition: opacity 300ms var(--ease-soft), width 300ms var(--ease),
		height 300ms var(--ease), margin 300ms var(--ease), background 300ms var(--ease),
		border-color 300ms var(--ease);
}

.cursor-dot {
	width: 6px;
	height: 6px;
	margin: -3px 0 0 -3px;
	background: var(--orange);
}

.has-cursor .cursor,
.has-cursor .cursor-dot {
	opacity: 1;
}

.has-cursor .cursor.is-hover {
	width: 74px;
	height: 74px;
	margin: -37px 0 0 -37px;
	background: rgba(255, 116, 23, 0.14);
	border-color: rgba(255, 116, 23, 0.55);
}

.has-cursor .cursor.is-down {
	width: 26px;
	height: 26px;
	margin: -13px 0 0 -13px;
}

.preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	background: var(--ink);
	color: var(--paper-2);
	transition: opacity 700ms var(--ease), visibility 700ms;
}

.preloader__inner {
	display: grid;
	justify-items: center;
	gap: 18px;
}

.preloader__mark {
	display: flex;
	gap: clamp(8px, 2.4vw, 20px);
	font-family: var(--font-display);
	font-size: clamp(2.6rem, 9vw, 5.4rem);
	line-height: 1;
	letter-spacing: 0.06em;
}

.preloader__mark span {
	display: block;
	opacity: 0;
	transform: translateY(120%);
	animation: pre-rise 900ms var(--ease) forwards;
	animation-delay: calc(var(--i) * 90ms);
}

.preloader__mark span:nth-child(2) {
	color: var(--orange);
}

@keyframes pre-rise {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.preloader__line {
	position: relative;
	width: min(260px, 52vw);
	height: 2px;
	background: rgba(255, 255, 255, 0.16);
	overflow: hidden;
	border-radius: 2px;
}

.preloader__line::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--orange);
	transform: translateX(-100%);
	animation: pre-load 1400ms var(--ease-soft) forwards;
	animation-delay: 260ms;
}

@keyframes pre-load {
	to { transform: translateX(0); }
}

.preloader__caption {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.34em;
	text-transform: uppercase;
}

body:not(.is-loading) .preloader {
	opacity: 0;
	visibility: hidden;
}

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

.button,
.nav-cta {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 26px;
	border: 1px solid transparent;
	border-radius: var(--radius-pill);
	font-size: 0.94rem;
	font-weight: 800;
	letter-spacing: 0.005em;
	overflow: hidden;
	isolation: isolate;
	cursor: pointer;
	transition: transform 320ms var(--ease), box-shadow 320ms var(--ease),
		color 320ms var(--ease), border-color 320ms var(--ease), background 320ms var(--ease);
	will-change: transform;
}

.button span,
.nav-cta span {
	position: relative;
	z-index: 2;
}

.button::before,
.nav-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: inherit;
	background: var(--ink);
	transform: translateY(101%);
	transition: transform 460ms var(--ease);
}

.button:hover::before,
.nav-cta:hover::before {
	transform: translateY(0);
}

.button--primary,
.nav-cta {
	background: var(--orange);
	color: #fff;
	box-shadow: 0 16px 34px rgba(255, 116, 23, 0.3);
}

.button--primary:hover,
.nav-cta:hover {
	box-shadow: 0 22px 48px rgba(22, 17, 14, 0.24);
}

.button--ghost {
	border-color: rgba(255, 255, 255, 0.32);
	background: rgba(255, 255, 255, 0.07);
	color: #fff;
	backdrop-filter: blur(14px);
}

.button--ghost::before {
	background: #fff;
}

.button--ghost:hover {
	color: var(--ink);
	border-color: transparent;
}

.button--ink {
	border-color: var(--line);
	background: var(--paper-2);
	color: var(--ink);
}

.button--ink::before {
	background: var(--ink);
}

.button--ink:hover {
	color: #fff;
	border-color: transparent;
}

.button__arrow {
	position: relative;
	z-index: 2;
	display: inline-block;
	transition: transform 380ms var(--ease);
}

.button:hover .button__arrow {
	transform: translateX(5px);
}

/* ---------------------------------------------------------
   Navigation
   --------------------------------------------------------- */

.nav-shell {
	position: fixed;
	top: 16px;
	left: 50%;
	z-index: 900;
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	align-items: center;
	gap: 16px;
	width: min(1200px, calc(100% - 32px));
	min-width: 0;
	padding: 9px 9px 9px 16px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-pill);
	background: rgba(20, 15, 12, 0.34);
	box-shadow: 0 20px 54px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(20px) saturate(140%);
	color: #fff;
	transform: translateX(-50%);
	transition: background 420ms var(--ease), border-color 420ms var(--ease),
		box-shadow 420ms var(--ease), color 420ms var(--ease), transform 520ms var(--ease);
}

.nav-shell.is-scrolled {
	background: rgba(255, 252, 247, 0.86);
	border-color: var(--line);
	box-shadow: 0 18px 44px rgba(35, 25, 16, 0.1);
	color: var(--ink);
}

.nav-shell.is-hidden {
	transform: translateX(-50%) translateY(-160%);
}

.nav-shell--inner {
	background: rgba(255, 252, 247, 0.88);
	border-color: var(--line);
	box-shadow: 0 18px 44px rgba(35, 25, 16, 0.1);
	color: var(--ink);
}

.admin-bar .nav-shell {
	top: 46px;
}

.brand {
	display: grid;
	align-content: center;
	gap: 3px;
	height: 48px;
	padding: 0 18px 0 4px;
	line-height: 1;
	white-space: nowrap;
}

.brand__mark {
	display: flex;
	align-items: baseline;
	gap: 3px;
	font-family: var(--font-display);
	font-size: 1.36rem;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.brand__mark i {
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--orange);
	transform: translateY(-2px);
	animation: pulse-dot 2.6s var(--ease-soft) infinite;
}

@keyframes pulse-dot {
	0%, 100% { transform: translateY(-2px) scale(1); opacity: 1; }
	50% { transform: translateY(-2px) scale(1.5); opacity: 0.55; }
}

.brand__line {
	font-size: 0.53rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	opacity: 0.66;
}

.main-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-width: 0;
	font-size: 0.86rem;
	font-weight: 700;
}

.main-nav a {
	position: relative;
	padding: 9px 14px;
	border-radius: var(--radius-pill);
	opacity: 0.82;
	white-space: nowrap;
	transition: opacity 240ms var(--ease), color 240ms var(--ease), background 240ms var(--ease);
}

.main-nav a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 4px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--orange);
	opacity: 0;
	transform: translate(-50%, 6px);
	transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}

.main-nav a:hover {
	opacity: 1;
	color: var(--orange);
}

.main-nav a.is-active {
	opacity: 1;
	color: var(--orange);
}

.main-nav a.is-active::after {
	opacity: 1;
	transform: translate(-50%, 0);
}

.nav-cta {
	min-height: 46px;
	padding: 0 22px;
	font-size: 0.86rem;
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 50%;
	background: var(--paper-2);
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	border-radius: 2px;
	background: var(--ink);
	transition: transform 320ms var(--ease), opacity 200ms var(--ease);
}

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

.hero {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100svh;
	padding: 0 0 96px;
	overflow: hidden;
	color: #fff;
	background: #100c0a;
	isolation: isolate;
}

.hero__media {
	position: absolute;
	inset: -4% -4% 0;
	z-index: -3;
	background-image:
		linear-gradient(96deg, rgba(10, 9, 8, 0.95) 0%, rgba(10, 9, 8, 0.8) 38%, rgba(10, 9, 8, 0.42) 66%, rgba(10, 9, 8, 0.72) 100%),
		linear-gradient(180deg, rgba(10, 9, 8, 0.6) 0%, rgba(10, 9, 8, 0.14) 40%, rgba(247, 242, 235, 0.86) 100%),
		var(--hero-image);
	background-size: cover;
	background-position: center 32%;
	/* `scale` stays separate from `transform` so the JS pointer parallax can
	   drive transform without the keyframe animation overriding it. */
	scale: 1.08;
	will-change: transform, scale;
	animation: hero-breathe 24s var(--ease-soft) infinite alternate;
}

.hero__media--preview {
	background-image:
		linear-gradient(96deg, rgba(10, 9, 8, 0.95) 0%, rgba(10, 9, 8, 0.8) 38%, rgba(10, 9, 8, 0.42) 66%, rgba(10, 9, 8, 0.72) 100%),
		linear-gradient(180deg, rgba(10, 9, 8, 0.6) 0%, rgba(10, 9, 8, 0.14) 40%, rgba(247, 242, 235, 0.86) 100%),
		url("https://www.adalpsikolojikvekurumsaldanismanlikhizmetleri.com/wp-content/uploads/2026/07/WhatsApp-Image-2026-07-30-at-15.42.07-scaled.jpeg");
}

@keyframes hero-breathe {
	from { scale: 1.08; }
	to { scale: 1.16; }
}

.hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	z-index: -1;
	height: 34%;
	background: linear-gradient(180deg, rgba(247, 242, 235, 0), var(--paper) 88%);
	pointer-events: none;
}

.aurora {
	position: absolute;
	inset: -18% -12% auto auto;
	z-index: -2;
	width: 74%;
	height: 78%;
	pointer-events: none;
	filter: blur(46px);
	opacity: 0.82;
	background:
		radial-gradient(ellipse at 20% 24%, rgba(255, 116, 23, 0.4), transparent 52%),
		radial-gradient(ellipse at 72% 40%, rgba(78, 122, 130, 0.34), transparent 54%),
		radial-gradient(ellipse at 44% 76%, rgba(255, 155, 77, 0.22), transparent 56%);
	animation: drift 18s var(--ease-soft) infinite alternate;
}

.aurora--2 {
	inset: auto auto -22% -14%;
	width: 56%;
	height: 60%;
	opacity: 0.5;
	background:
		radial-gradient(ellipse at 50% 50%, rgba(78, 122, 130, 0.4), transparent 58%),
		radial-gradient(ellipse at 30% 30%, rgba(255, 116, 23, 0.2), transparent 60%);
	animation-duration: 22s;
	animation-direction: alternate-reverse;
}

@keyframes drift {
	from { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
	to { transform: translate3d(-8%, 7%, 0) rotate(10deg) scale(1.1); }
}

.hero__content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(290px, 372px);
	align-items: center;
	gap: clamp(30px, 5vw, 72px);
	flex: 1;
	padding: calc(var(--nav-h) + 84px) 0 40px;
}

.hero__copy {
	max-width: 44ch;
}

.hero .eyebrow {
	color: var(--orange-2);
}

.hero h1 {
	color: #fff;
	max-width: 16ch;
}

.lead {
	max-width: 54ch;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(1.02rem, 1.35vw, 1.2rem);
	line-height: 1.7;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

/* Kinetic headline */

.kw-wrap {
	display: inline-block;
	overflow: hidden;
	vertical-align: bottom;
	padding: 0.06em 0.04em 0.14em;
	margin: -0.06em -0.04em -0.14em;
}

.kw {
	display: inline-block;
	transform: translateY(112%) rotate(4deg);
	opacity: 0;
	transition: transform 1000ms var(--ease), opacity 700ms var(--ease);
	transition-delay: calc(var(--i, 0) * 62ms + 120ms);
}

.is-kinetic .kw,
.no-motion .kw {
	transform: translateY(0) rotate(0);
	opacity: 1;
}

.kw--accent {
	position: relative;
	color: var(--orange-2);
	font-style: italic;
}

.kw--accent::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.1em;
	height: 0.07em;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--orange), transparent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 900ms var(--ease) 900ms;
}

.is-kinetic .kw--accent::after {
	transform: scaleX(1);
}

/* Signal panel */

.signal-panel {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 380px;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius-lg);
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.05));
	box-shadow: var(--shadow-3);
	backdrop-filter: blur(20px);
	overflow: hidden;
}

.signal-panel::before {
	content: "";
	position: absolute;
	inset: 14px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: calc(var(--radius-lg) - 8px);
	pointer-events: none;
}

.signal-panel__label {
	position: relative;
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 14px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.signal-panel__label i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #7ee0a1;
	box-shadow: 0 0 0 0 rgba(126, 224, 161, 0.7);
	animation: live-dot 2.2s var(--ease-soft) infinite;
}

@keyframes live-dot {
	0% { box-shadow: 0 0 0 0 rgba(126, 224, 161, 0.6); }
	70% { box-shadow: 0 0 0 12px rgba(126, 224, 161, 0); }
	100% { box-shadow: 0 0 0 0 rgba(126, 224, 161, 0); }
}

.signal-panel strong {
	position: relative;
	display: block;
	max-width: 15ch;
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 2.1vw, 2rem);
	font-weight: 600;
	line-height: 1.12;
}

.signal-orbit {
	position: absolute;
	right: -126px;
	bottom: -146px;
	z-index: 0;
	width: 300px;
	height: 300px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	animation: rotate 26s linear infinite;
}

.signal-orbit span {
	position: absolute;
	inset: 34px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 50%;
}

.signal-orbit span:nth-child(2) {
	inset: 76px;
}

.signal-orbit span:nth-child(3) {
	inset: 124px;
	background: radial-gradient(circle at 40% 35%, var(--orange-2), var(--orange));
	box-shadow: 0 0 40px rgba(255, 116, 23, 0.6);
	border-color: transparent;
}

.signal-grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 8px;
	margin-top: auto;
	padding-top: 26px;
}

.signal-grid span {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 13px 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9rem;
	font-weight: 700;
	transition: background 320ms var(--ease), transform 320ms var(--ease);
}

.signal-grid span:hover {
	background: rgba(255, 255, 255, 0.18);
	transform: translateX(5px);
}

.signal-grid b {
	color: var(--orange-2);
	font-family: var(--font-display);
	font-size: 0.9rem;
}

/* Ticker + scroll cue */

.hero__foot {
	position: relative;
	display: grid;
	gap: 22px;
}

.hero__ticker {
	position: relative;
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hero__ticker div {
	display: flex;
	width: max-content;
	animation: ticker 34s linear infinite;
}

.hero__ticker:hover div {
	animation-play-state: paused;
}

.hero__ticker span {
	display: flex;
	align-items: center;
	gap: 34px;
	padding: 14px 0 14px 34px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	white-space: nowrap;
}

.hero__ticker span::after {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--orange);
	opacity: 0.8;
}

.scroll-cue {
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.26em;
	text-transform: uppercase;
}

.scroll-cue::after {
	content: "";
	position: relative;
	width: 62px;
	height: 1px;
	background: rgba(255, 255, 255, 0.25);
	overflow: hidden;
}

.scroll-cue i {
	position: relative;
	width: 22px;
	height: 34px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 999px;
}

.scroll-cue i::after {
	content: "";
	position: absolute;
	top: 7px;
	left: 50%;
	width: 3px;
	height: 7px;
	border-radius: 3px;
	background: var(--orange);
	transform: translateX(-50%);
	animation: cue 1.9s var(--ease-soft) infinite;
}

@keyframes cue {
	0% { opacity: 0; transform: translate(-50%, -6px); }
	40% { opacity: 1; }
	100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* ---------------------------------------------------------
   Stats band
   --------------------------------------------------------- */

.intro-band {
	position: relative;
	padding: clamp(56px, 7vw, 92px) 0;
	background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}

.intro-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.intro-copy {
	grid-column: 1 / -1;
	max-width: 900px;
	margin-bottom: 12px;
}

.intro-copy h2 {
	margin-bottom: 0;
}

.stat-card {
	position: relative;
	padding: 30px 28px 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--paper-2);
	box-shadow: var(--shadow-1);
	overflow: hidden;
	transition: transform 420ms var(--ease), box-shadow 420ms var(--ease), border-color 420ms var(--ease);
}

.stat-card::after {
	content: "";
	position: absolute;
	inset: auto -30% -60% -30%;
	height: 70%;
	background: radial-gradient(ellipse at 50% 0%, rgba(255, 116, 23, 0.18), transparent 70%);
	opacity: 0;
	transition: opacity 480ms var(--ease);
}

.stat-card:hover {
	transform: translateY(-6px);
	border-color: rgba(255, 116, 23, 0.32);
	box-shadow: var(--shadow-2);
}

.stat-card:hover::after {
	opacity: 1;
}

.stat {
	display: flex;
	align-items: baseline;
	gap: 2px;
	margin-bottom: 12px;
	color: var(--orange);
	font-family: var(--font-display);
	font-size: clamp(3rem, 5vw, 4.4rem);
	font-weight: 700;
	line-height: 0.9;
}

.stat em {
	font-size: 0.42em;
	font-style: normal;
	font-family: var(--font-body);
	font-weight: 800;
	letter-spacing: -0.02em;
}

.stat-card h3 {
	margin-bottom: 6px;
}

.stat-card p {
	margin-bottom: 0;
	font-size: 0.94rem;
}

/* ---------------------------------------------------------
   Care map
   --------------------------------------------------------- */

.care-map {
	background: var(--paper-2);
}

.care-map__grid {
	display: grid;
	grid-template-columns: 0.78fr 1.22fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: start;
}

.care-map__copy {
	position: sticky;
	top: 128px;
}

.care-map__items {
	display: grid;
	gap: 12px;
}

.care-item {
	position: relative;
	display: grid;
	grid-template-columns: 150px 1fr auto;
	align-items: center;
	gap: 24px;
	padding: 30px 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(120deg, var(--paper) 0%, var(--paper-2) 60%);
	box-shadow: var(--shadow-1);
	overflow: hidden;
	transition: transform 420ms var(--ease), box-shadow 420ms var(--ease), border-color 420ms var(--ease);
}

.care-item::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 116, 23, 0.13), transparent 70%);
	opacity: 0;
	transition: opacity 420ms var(--ease);
	pointer-events: none;
}

.care-item:hover {
	transform: translateX(6px);
	border-color: rgba(255, 116, 23, 0.3);
	box-shadow: var(--shadow-2);
}

.care-item:hover::before {
	opacity: 1;
}

.care-item__title {
	position: relative;
	display: grid;
	gap: 6px;
	color: var(--deep);
	font-size: 1.06rem;
	font-weight: 800;
}

.care-item__title b {
	color: var(--orange);
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.care-item p {
	position: relative;
	margin-bottom: 0;
	font-size: 0.97rem;
}

.care-item__arrow {
	position: relative;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 50%;
	color: var(--ink);
	transition: background 380ms var(--ease), color 380ms var(--ease), transform 380ms var(--ease);
}

.care-item:hover .care-item__arrow {
	background: var(--orange);
	color: #fff;
	transform: rotate(-45deg) scale(1.06);
}

/* ---------------------------------------------------------
   Services
   --------------------------------------------------------- */

.expertise {
	background: linear-gradient(180deg, var(--paper-2), var(--paper));
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 300px;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--paper-2);
	box-shadow: var(--shadow-1);
	overflow: hidden;
	transform-style: preserve-3d;
	transition: box-shadow 420ms var(--ease), border-color 420ms var(--ease),
		transform 420ms var(--ease);
	will-change: transform;
}

.service-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 116, 23, 0.14), transparent 65%);
	opacity: 0;
	transition: opacity 420ms var(--ease);
	pointer-events: none;
}

.service-card::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), var(--teal));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 560ms var(--ease);
}

.service-card:hover {
	border-color: rgba(255, 116, 23, 0.3);
	box-shadow: var(--shadow-2);
}

.service-card:hover::before,
.service-card:hover::after {
	opacity: 1;
	transform: scaleX(1);
}

.service-card__num {
	position: relative;
	z-index: 1;
	display: block;
	margin-bottom: auto;
	color: transparent;
	font-family: var(--font-display);
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1;
	-webkit-text-stroke: 1px rgba(255, 116, 23, 0.55);
	transition: color 420ms var(--ease), transform 520ms var(--ease);
}

.service-card:hover .service-card__num {
	color: rgba(255, 116, 23, 0.16);
	transform: translateY(-3px);
}

.service-card h3 {
	position: relative;
	z-index: 1;
	margin: 44px 0 10px;
}

.service-card p {
	position: relative;
	z-index: 1;
	margin-bottom: 0;
	font-size: 0.95rem;
}

.service-card__line {
	position: relative;
	z-index: 1;
	width: 30px;
	height: 2px;
	margin-top: 20px;
	border-radius: 2px;
	background: var(--orange);
	transition: width 520ms var(--ease);
}

.service-card:hover .service-card__line {
	width: 64px;
}

/* ---------------------------------------------------------
   Corporate split story
   --------------------------------------------------------- */

.split-story {
	background: var(--paper);
	overflow: hidden;
}

.split-grid {
	display: grid;
	grid-template-columns: 1.02fr 0.98fr;
	gap: clamp(34px, 6vw, 88px);
	align-items: center;
}

.image-stack {
	position: relative;
}

.image-frame {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-2);
}

.image-frame img {
	width: 100%;
	aspect-ratio: 1.08;
	object-fit: cover;
	transform: scale(1.12);
	will-change: transform;
	transition: transform 900ms var(--ease);
}

.image-frame::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20, 48, 63, 0.1), rgba(20, 15, 12, 0.32));
	pointer-events: none;
}

.floating-note {
	position: absolute;
	right: clamp(-30px, -2vw, 0px);
	bottom: 34px;
	width: min(330px, 80%);
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: var(--radius);
	background: rgba(255, 252, 247, 0.82);
	box-shadow: var(--shadow-2);
	backdrop-filter: blur(18px);
	animation: float-soft 7s var(--ease-soft) infinite alternate;
}

@keyframes float-soft {
	from { transform: translateY(0); }
	to { transform: translateY(-14px); }
}

.floating-note strong {
	display: block;
	margin-bottom: 8px;
	font-size: 1.06rem;
}

.floating-note span {
	display: block;
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.6;
}

.story-copy p {
	font-size: 1.06rem;
}

.pill-list {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 28px;
}

.pill-list span {
	padding: 11px 17px;
	border: 1px solid var(--line);
	border-radius: var(--radius-pill);
	background: var(--paper-2);
	color: var(--deep);
	font-size: 0.88rem;
	font-weight: 700;
	transition: transform 320ms var(--ease), background 320ms var(--ease), color 320ms var(--ease);
}

.pill-list span:hover {
	transform: translateY(-3px);
	background: var(--deep);
	color: #fff;
}

/* ---------------------------------------------------------
   Principles marquee
   --------------------------------------------------------- */

.principles {
	position: relative;
	padding: 0;
	background: var(--ink);
	color: #fff;
	overflow: hidden;
}

.principles__track {
	display: flex;
	width: max-content;
	padding: 28px 0;
	animation: ticker 40s linear infinite;
}

.principles__track--reverse {
	animation-direction: reverse;
	animation-duration: 46s;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	opacity: 0.42;
}

.principles__track span {
	display: flex;
	align-items: center;
	gap: 30px;
	padding-left: 30px;
	font-family: var(--font-display);
	font-size: clamp(1.7rem, 3.4vw, 3rem);
	font-weight: 600;
	white-space: nowrap;
}

.principles__track span::after {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--orange);
}

.principles__track em {
	font-style: normal;
	color: transparent;
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.42);
}

/* ---------------------------------------------------------
   Process timeline
   --------------------------------------------------------- */

.process {
	position: relative;
	background: var(--deep);
	color: #fff;
	overflow: hidden;
}

.process::before {
	content: "";
	position: absolute;
	inset: -30% -20% auto auto;
	width: 60%;
	height: 80%;
	background: radial-gradient(ellipse at 60% 40%, rgba(255, 116, 23, 0.2), transparent 62%);
	filter: blur(40px);
	pointer-events: none;
}

.process h2,
.process h3 {
	color: #fff;
}

.process p {
	color: rgba(255, 255, 255, 0.66);
}

.process .eyebrow {
	color: var(--orange-2);
}

.process-grid {
	position: relative;
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: clamp(30px, 5vw, 64px);
	align-items: start;
}

.process .section-heading {
	position: sticky;
	top: 128px;
	margin-bottom: 0;
}

.timeline {
	position: relative;
	display: grid;
	gap: 12px;
	padding-left: 30px;
}

.timeline__rail {
	position: absolute;
	top: 12px;
	bottom: 12px;
	left: 7px;
	width: 2px;
	background: rgba(255, 255, 255, 0.14);
	border-radius: 2px;
	overflow: hidden;
}

.timeline__rail i {
	position: absolute;
	inset: 0 0 auto;
	height: 100%;
	background: linear-gradient(180deg, var(--orange), var(--orange-2));
	transform: scaleY(var(--p, 0));
	transform-origin: top;
	transition: transform 180ms linear;
}

.timeline-item {
	position: relative;
	display: grid;
	grid-template-columns: 68px 1fr;
	gap: 20px;
	padding: 26px 26px 26px 24px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(6px);
	transition: background 420ms var(--ease), transform 420ms var(--ease), border-color 420ms var(--ease);
}

.timeline-item:hover {
	transform: translateX(6px);
	background: rgba(255, 255, 255, 0.09);
	border-color: rgba(255, 116, 23, 0.36);
}

.timeline-item::before {
	content: "";
	position: absolute;
	top: 34px;
	left: -30px;
	width: 14px;
	height: 14px;
	border: 2px solid var(--deep);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: scale(0.6);
	transition: transform 460ms var(--ease), background 460ms var(--ease);
}

.timeline-item.is-visible::before {
	background: var(--orange);
	transform: scale(1);
	box-shadow: 0 0 0 6px rgba(255, 116, 23, 0.16);
}

.timeline-item__num {
	color: var(--orange-2);
	font-family: var(--font-display);
	font-size: 2.3rem;
	line-height: 1;
}

.timeline-item h3 {
	margin-bottom: 7px;
}

.timeline-item p {
	margin-bottom: 0;
	font-size: 0.96rem;
}

/* ---------------------------------------------------------
   FAQ
   --------------------------------------------------------- */

.faq-section {
	background: var(--paper-2);
}

.faq-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: clamp(28px, 5vw, 64px);
	align-items: start;
}

.faq-section .section-heading {
	position: sticky;
	top: 128px;
	margin-bottom: 0;
}

.faq-list {
	display: grid;
	gap: 10px;
}

.faq-item {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--paper);
	box-shadow: var(--shadow-1);
	overflow: hidden;
	transition: border-color 380ms var(--ease), background 380ms var(--ease), box-shadow 380ms var(--ease);
}

.faq-item.is-open {
	border-color: rgba(255, 116, 23, 0.34);
	background: var(--paper-2);
	box-shadow: var(--shadow-2);
}

.faq-item__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	padding: 24px 24px;
	border: 0;
	background: none;
	color: var(--ink);
	font-size: 1.02rem;
	font-weight: 800;
	text-align: left;
	cursor: pointer;
}

.faq-item__icon {
	position: relative;
	flex: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--ink);
	transition: background 380ms var(--ease), transform 500ms var(--ease);
}

.faq-item__icon::before,
.faq-item__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	border-radius: 2px;
	background: #fff;
	transform: translate(-50%, -50%);
	transition: transform 420ms var(--ease), opacity 300ms var(--ease);
}

.faq-item__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__icon {
	background: var(--orange);
	transform: rotate(180deg);
}

.faq-item.is-open .faq-item__icon::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__a {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 520ms var(--ease);
}

.faq-item.is-open .faq-item__a {
	grid-template-rows: 1fr;
}

.faq-item__a > div {
	overflow: hidden;
}

.faq-item__a p {
	margin: 0;
	padding: 0 24px 26px;
	font-size: 0.98rem;
}

/* ---------------------------------------------------------
   Contact — Ankara only
   --------------------------------------------------------- */

.location-cta {
	position: relative;
	background: linear-gradient(180deg, var(--paper-2), var(--paper));
	overflow: hidden;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1.02fr 0.98fr;
	gap: clamp(30px, 5vw, 68px);
	align-items: center;
}

.contact-copy h2 {
	margin-bottom: 20px;
}

.city-card {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 28px 0 6px;
	padding: 22px 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--paper-2);
	box-shadow: var(--shadow-1);
	transition: transform 420ms var(--ease), box-shadow 420ms var(--ease), border-color 420ms var(--ease);
}

.city-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 116, 23, 0.32);
	box-shadow: var(--shadow-2);
}

.radar {
	position: relative;
	flex: none;
	display: grid;
	place-items: center;
	width: 74px;
	height: 74px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: radial-gradient(circle at 50% 50%, rgba(255, 116, 23, 0.14), transparent 70%);
}

.radar i {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 116, 23, 0.5);
	border-radius: 50%;
	animation: radar-pulse 2.8s var(--ease-soft) infinite;
	animation-delay: calc(var(--i) * 900ms);
	opacity: 0;
}

@keyframes radar-pulse {
	0% { transform: scale(0.4); opacity: 0.9; }
	80% { transform: scale(1.25); opacity: 0; }
	100% { opacity: 0; }
}

.radar b {
	position: relative;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--orange);
	box-shadow: 0 0 22px rgba(255, 116, 23, 0.7);
}

.city-card__text {
	display: grid;
	gap: 3px;
}

.city-card__text strong {
	font-family: var(--font-display);
	font-size: 1.9rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.01em;
}

.city-card__text span {
	max-width: 34ch;
	color: var(--muted);
	font-size: 0.86rem;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.01em;
}

.contact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

/* Phone / email as plain readable lines above the call-to-action buttons. */

.contact-details {
	display: grid;
	gap: 4px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.contact-details a {
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: 100%;
	padding: 6px 0;
	color: var(--ink);
	font-weight: 700;
	/* Addresses like a corporate email can be one long, space-less token —
	   allow it to break instead of overflowing the column on narrow screens. */
	overflow-wrap: anywhere;
	transition: color 240ms var(--ease);
}

.contact-details a:hover {
	color: var(--orange);
}

.contact-details__icon {
	display: grid;
	place-items: center;
	flex: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--paper-3);
	color: var(--orange);
}

/* Social icon row — only rendered when at least one profile is configured. */

.social-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.social-row__item {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--paper-2);
	color: var(--ink);
	transition: background 300ms var(--ease), color 300ms var(--ease), transform 300ms var(--ease), border-color 300ms var(--ease);
}

.social-row__item:hover {
	background: var(--orange);
	border-color: transparent;
	color: #fff;
	transform: translateY(-3px);
}

.social-row--footer .social-row__item {
	border-color: rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.82);
}

.social-row--footer .social-row__item:hover {
	background: var(--orange);
	color: #fff;
}

/* Contact form */

.contact-form-panel {
	padding: clamp(26px, 3vw, 38px);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--paper-2);
	box-shadow: var(--shadow-2);
}

.contact-form {
	display: grid;
	gap: 16px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-field {
	display: grid;
	gap: 8px;
	font-size: 0.86rem;
	font-weight: 800;
	color: var(--ink);
}

.form-field em {
	color: var(--muted);
	font-style: normal;
	font-weight: 600;
}

.form-field input,
.form-field textarea {
	width: 100%;
	padding: 13px 16px;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--paper);
	color: var(--ink);
	font: inherit;
	font-size: 0.96rem;
	font-weight: 500;
	resize: vertical;
	transition: border-color 260ms var(--ease), box-shadow 260ms var(--ease), background 260ms var(--ease);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
	color: var(--muted);
}

.form-field input:focus,
.form-field textarea:focus {
	outline: none;
	border-color: var(--orange);
	background: var(--paper-2);
	box-shadow: 0 0 0 4px rgba(255, 116, 23, 0.14);
}

.form-field input:user-invalid,
.form-field textarea:user-invalid {
	border-color: #d94f3d;
}

/* Honeypot: present in the DOM for bots, invisible and unreachable for people. */

.form-field--hp {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.form-submit {
	justify-self: start;
	margin-top: 4px;
}

.form-submit[disabled] {
	opacity: 0.7;
	cursor: wait;
}

.form-status {
	min-height: 1.4em;
	margin: 0;
	font-size: 0.9rem;
	font-weight: 700;
}

.form-status[data-state="ok"] {
	color: #2f8f5b;
}

.form-status[data-state="error"] {
	color: #d94f3d;
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */

.site-footer {
	position: relative;
	padding: 64px 0 30px;
	background: var(--ink);
	color: #fff;
	overflow: hidden;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 40px;
	align-items: start;
	padding-bottom: 46px;
}

.footer-brand strong {
	display: block;
	margin-bottom: 8px;
	font-family: var(--font-display);
	font-size: 1.5rem;
	letter-spacing: 0.06em;
}

.site-footer p {
	margin: 0;
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.94rem;
}

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

.footer-col h4 {
	margin: 0 0 12px;
	color: rgba(255, 255, 255, 0.42);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.footer-col nav {
	display: grid;
	gap: 9px;
}

.footer-col a {
	position: relative;
	width: fit-content;
	max-width: 100%;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.94rem;
	font-weight: 700;
	overflow-wrap: anywhere;
	transition: color 260ms var(--ease);
}

.footer-col a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -3px;
	height: 1px;
	background: var(--orange);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 380ms var(--ease);
}

.footer-col a:hover {
	color: #fff;
}

.footer-col a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.footer-wordmark {
	display: block;
	width: 100%;
	margin: 10px 0 0;
	color: rgba(255, 255, 255, 0.07);
	font-family: var(--font-display);
	font-size: clamp(4rem, 20vw, 17rem);
	font-weight: 700;
	line-height: 0.8;
	letter-spacing: 0.02em;
	text-align: center;
	user-select: none;
}

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-top: 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.44);
	font-size: 0.82rem;
}

/* ---------------------------------------------------------
   Docks
   --------------------------------------------------------- */

.quick-contact {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 880;
	display: flex;
	gap: 7px;
	padding: 7px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: var(--radius-pill);
	background: rgba(22, 17, 14, 0.72);
	box-shadow: var(--shadow-2);
	backdrop-filter: blur(18px);
	transform: translateY(140%);
	opacity: 0;
	transition: transform 620ms var(--ease), opacity 480ms var(--ease);
}

.quick-contact.is-in {
	transform: translateY(0);
	opacity: 1;
}

.quick-contact a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 40px;
	padding: 0 16px;
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 0.82rem;
	font-weight: 800;
	white-space: nowrap;
	transition: background 300ms var(--ease), transform 300ms var(--ease);
}

.quick-contact a:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.quick-contact a.is-primary {
	background: var(--orange);
}

.quick-contact a.is-primary:hover {
	background: var(--orange-2);
}

.to-top {
	position: fixed;
	left: 18px;
	bottom: 18px;
	z-index: 880;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: rgba(255, 252, 247, 0.88);
	color: var(--ink);
	box-shadow: var(--shadow-1);
	backdrop-filter: blur(12px);
	cursor: pointer;
	transform: translateY(140%);
	opacity: 0;
	transition: transform 620ms var(--ease), opacity 480ms var(--ease), background 300ms var(--ease);
}

.to-top.is-in {
	transform: translateY(0);
	opacity: 1;
}

.to-top:hover {
	background: var(--orange);
	color: #fff;
}

/* ---------------------------------------------------------
   Inner pages
   --------------------------------------------------------- */

.content-shell {
	min-height: 78vh;
	padding: calc(var(--nav-h) + 76px) 0 90px;
	background: linear-gradient(180deg, var(--paper-3), var(--paper));
}

.entry-card {
	padding: clamp(28px, 6vw, 64px);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--paper-2);
	box-shadow: var(--shadow-1);
}

.entry-card + .entry-card {
	margin-top: 18px;
}

.entry-card h1 {
	font-size: clamp(2.2rem, 4.6vw, 4rem);
}

.entry-card h2 {
	font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.entry-content {
	color: var(--muted);
}

.entry-content a {
	color: var(--orange);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry-meta {
	margin-bottom: 18px;
	color: var(--muted);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 32px;
	color: var(--ink);
}

.entry-content img {
	border-radius: var(--radius-sm);
}

.entry-content blockquote {
	margin: 26px 0;
	padding: 6px 0 6px 22px;
	border-left: 3px solid var(--orange);
	font-family: var(--font-display);
	font-size: 1.25rem;
	color: var(--ink);
}

.pagination {
	display: flex;
	justify-content: center;
	margin-top: 26px;
}

.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border: 1px solid var(--line);
	border-radius: var(--radius-pill);
	background: var(--paper-2);
	font-weight: 800;
	transition: background 280ms var(--ease), color 280ms var(--ease);
}

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

/* ---------------------------------------------------------
   Reveal system
   --------------------------------------------------------- */

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 900ms var(--ease), transform 900ms var(--ease);
	transition-delay: calc(var(--delay, 0) * 1ms);
	will-change: opacity, transform;
}

.reveal--left {
	transform: translateX(-34px);
}

.reveal--right {
	transform: translateX(34px);
}

.reveal--scale {
	transform: scale(0.95);
}

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

@keyframes rotate {
	to { transform: rotate(360deg); }
}

@keyframes ticker {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */

@media (max-width: 980px) {
	.container,
	.container--narrow {
		width: min(100% - 36px, 1200px);
	}

	.nav-shell {
		grid-template-columns: auto 1fr auto;
		padding: 8px 8px 8px 14px;
	}

	.main-nav {
		position: fixed;
		inset: 78px 16px auto;
		display: grid;
		gap: 4px;
		padding: 18px;
		border: 1px solid var(--line);
		border-radius: var(--radius);
		background: rgba(255, 252, 247, 0.97);
		color: var(--ink);
		box-shadow: var(--shadow-2);
		backdrop-filter: blur(20px);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-12px) scale(0.98);
		transition: opacity 300ms var(--ease), transform 420ms var(--ease);
	}

	.menu-open .main-nav {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0) scale(1);
	}

	.main-nav a {
		padding: 14px 12px;
		font-size: 1rem;
		border-bottom: 1px solid var(--line-2);
		border-radius: 0;
	}

	.main-nav a:last-child {
		border-bottom: 0;
	}

	.main-nav a::after {
		left: auto;
		right: 12px;
		bottom: 50%;
		transform: translate(0, 50%);
	}

	.nav-cta {
		display: none;
	}

	.menu-toggle {
		display: block;
		justify-self: end;
	}

	.menu-open .menu-toggle span:first-child {
		transform: translateY(3px) rotate(45deg);
	}

	.menu-open .menu-toggle span:last-child {
		transform: translateY(-3px) rotate(-45deg);
	}

	.hero__content,
	.care-map__grid,
	.split-grid,
	.process-grid,
	.faq-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.hero__content {
		align-items: start;
		gap: 26px;
		padding-top: calc(var(--nav-h) + 66px);
	}

	.signal-panel {
		min-height: 320px;
	}

	.care-map__copy,
	.process .section-heading,
	.faq-section .section-heading {
		position: static;
		margin-bottom: 26px;
	}

	.intro-grid,
	.service-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.floating-note {
		right: 14px;
	}

	.image-frame img {
		transform: scale(1);
	}
}

@media (max-width: 680px) {
	.container,
	.container--narrow {
		width: min(100% - 28px, 1200px);
	}

	.admin-bar .nav-shell {
		top: 58px;
	}

	h1 {
		font-size: clamp(2.4rem, 10.6vw, 3.6rem);
		line-height: 1.04;
	}

	h2 {
		font-size: clamp(1.95rem, 8.6vw, 2.9rem);
	}

	.hero {
		min-height: auto;
		padding-bottom: 74px;
	}

	.hero__content {
		padding-bottom: 34px;
	}

	.signal-panel {
		min-height: 300px;
		padding: 22px;
	}

	.signal-orbit {
		right: -140px;
		bottom: -160px;
	}

	.signal-grid {
		right: 20px;
		bottom: 20px;
		left: 20px;
	}

	.hero__actions .button {
		width: 100%;
	}

	.scroll-cue {
		display: none;
	}

	.intro-grid,
	.service-grid,
	.footer-grid,
	.footer-links {
		grid-template-columns: 1fr;
	}

	.care-item {
		grid-template-columns: 1fr auto;
		gap: 12px;
		padding: 24px 22px;
	}

	.care-item p {
		grid-column: 1 / -1;
	}

	.service-card {
		min-height: auto;
	}

	.service-card h3 {
		margin-top: 32px;
	}

	.timeline-item {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.floating-note {
		position: static;
		width: 100%;
		margin-top: -34px;
		animation: none;
	}

	.city-card {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.contact-actions .button {
		width: 100%;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.form-submit {
		width: 100%;
		justify-self: stretch;
	}

	.quick-contact {
		right: 12px;
		bottom: 12px;
		left: 72px;
		justify-content: center;
	}

	.quick-contact a {
		padding: 0 12px;
	}

	.to-top {
		left: 12px;
		bottom: 12px;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ---------------------------------------------------------
   Motion preferences
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.reveal,
	.kw {
		opacity: 1 !important;
		transform: none !important;
	}

	.grain,
	.cursor,
	.cursor-dot {
		display: none;
	}

	.quick-contact,
	.to-top {
		opacity: 1;
		transform: none;
	}
}

@media (hover: none), (pointer: coarse) {
	.cursor,
	.cursor-dot {
		display: none;
	}
}
