:root {
	--color-bg-dark: #0b0b0c;
	--color-bg-light: #f5f3ef;
	--color-white: #ffffff;
	--color-text: #111111;
	--color-text-secondary: #6b6b6b;
	--color-accent: #9f7a49;
	--color-border: #d8d2c8;
	--color-header-scrolled: rgba(245, 243, 239, 0.92);

	--container-width: 1200px;
	--pad-x: 32px;
	--radius-sm: 8px;
	--radius-md: 14px;
	--transition-default: 0.35s ease;

	--font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	--section-space: 140px;
	--max-text: 720px;
	--max-text-narrow: 600px;
	/* Высота зоны под фиксированную шапку (липкие заголовки секций и drawer) */
	--header-sticky-offset: 88px;
}

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

html {
	scroll-behavior: smooth;
}

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

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-bg-light);
	-webkit-font-smoothing: antialiased;
}

/* Открытое мобильное меню: не скроллить лендинг под шторкой */
html.drawer-open {
	overflow: hidden;
}

body.drawer-open {
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
	overflow: hidden;
}

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

a {
	color: var(--color-accent);
	text-underline-offset: 0.18em;
	transition: color var(--transition-default), opacity var(--transition-default);
}

a:hover {
	color: #7e623a;
}

a:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 3px;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	left: -999px;
	top: 12px;
	background: var(--color-white);
	color: var(--color-text);
	padding: 10px 16px;
	border-radius: var(--radius-sm);
	z-index: 1000;
	border: 1px solid var(--color-border);
}

.skip-link:focus {
	left: 16px;
}

.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--pad-x);
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 20px 0;
	overflow: visible;
	transition:
		background var(--transition-default),
		box-shadow var(--transition-default),
		border-color var(--transition-default);
	border-bottom: 1px solid transparent;
}

.page-home .site-header,
.page-practices .site-header {
	color: rgba(245, 243, 239, 0.92);
}

.page-home .site-header.is-scrolled,
.page-practices .site-header.is-scrolled {
	background: var(--color-header-scrolled);
	backdrop-filter: blur(12px);
	border-bottom-color: var(--color-border);
	color: var(--color-text);
}

body:not(.page-home):not(.page-practices) .site-header {
	background: var(--color-header-scrolled);
	backdrop-filter: blur(10px);
	border-bottom-color: var(--color-border);
	color: var(--color-text);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	column-gap: clamp(16px, 2.5vw, 28px);
	row-gap: 10px;
}

.site-logo {
	grid-column: 1;
	text-decoration: none;
	justify-self: start;
	line-height: 0;
	display: inline-flex;
	align-items: center;
	height: 52px;
}

.site-logo:hover {
	opacity: 0.85;
	color: inherit;
}

.site-logo__img {
	display: block;
	width: auto;
	height: 35px;
	object-fit: contain;
}

.site-logo__img--light-bg {
	display: block;
}

.site-logo__img--dark-bg {
	display: none;
}

.page-home .site-header:not(.is-scrolled) .site-logo__img--dark-bg,
.page-practices .site-header:not(.is-scrolled) .site-logo__img--dark-bg {
	display: block;
}

.page-home .site-header:not(.is-scrolled) .site-logo__img--light-bg,
.page-practices .site-header:not(.is-scrolled) .site-logo__img--light-bg {
	display: none;
}

.site-nav {
	grid-column: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 0;
	overflow: visible;
	justify-self: stretch;
}

.site-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	column-gap: clamp(10px, 1.25vw, 20px);
	row-gap: 8px;
	max-width: 100%;
}

@media (min-width: 1320px) {
	.site-nav__list {
		flex-wrap: nowrap;
		column-gap: clamp(14px, 1.5vw, 22px);
	}
}

.site-nav__list > li {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.site-nav__link {
	display: inline-block;
	color: inherit;
	text-decoration: none;
	font-size: clamp(10px, 1.05vw, 12px);
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	opacity: 0.9;
	white-space: nowrap;
	line-height: 1.2;
}

.site-nav__link:hover {
	opacity: 1;
	color: var(--color-accent);
}

.page-home .site-header:not(.is-scrolled) .site-nav__link:hover,
.page-practices .site-header:not(.is-scrolled) .site-nav__link:hover {
	color: #c9a066;
}

.page-home .site-header.is-scrolled .site-nav__link:hover,
.page-practices .site-header.is-scrolled .site-nav__link:hover {
	color: #7e623a;
}

.site-header__actions {
	grid-column: 3;
	display: flex;
	align-items: center;
	justify-self: end;
	gap: 12px;
	flex-shrink: 0;
}

.site-header__cta {
	display: none;
	white-space: nowrap;
}

.burger {
	display: none;
	position: relative;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-sm);
}

.burger:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
}

.burger__line {
	position: absolute;
	left: 50%;
	width: 22px;
	height: 2px;
	margin-left: -11px;
	background: currentColor;
	border-radius: 1px;
	transition:
		transform 0.25s ease,
		top 0.25s ease;
}

.burger:not(.is-open) .burger__line:first-child {
	top: 16px;
}

.burger:not(.is-open) .burger__line:last-child {
	top: 26px;
}

.burger.is-open .burger__line:first-child {
	top: 21px;
	transform: rotate(45deg);
}

.burger.is-open .burger__line:last-child {
	top: 21px;
	transform: rotate(-45deg);
}

.site-drawer {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: var(--color-bg-dark);
	color: rgba(245, 243, 239, 0.94);
	border-top: 1px solid rgba(216, 210, 200, 0.12);
	padding: 0;
	max-height: min(520px, calc(100vh - 72px));
}

.site-drawer:not([hidden]) {
	display: flex;
	flex-direction: column;
}

.site-drawer[hidden] {
	display: none !important;
}

.site-drawer__scroll {
	overflow-y: auto;
	padding: 16px var(--pad-x) 24px;
	-webkit-overflow-scrolling: touch;
}

body:not(.page-home):not(.page-practices) .site-drawer {
	background: var(--color-white);
	color: var(--color-text);
	border-top-color: var(--color-border);
}

.page-home .site-header.is-scrolled .site-drawer,
.page-practices .site-header.is-scrolled .site-drawer {
	background: var(--color-white);
	color: var(--color-text);
	border-top-color: var(--color-border);
}

.page-home .site-header.is-scrolled .site-drawer__link,
.page-practices .site-header.is-scrolled .site-drawer__link {
	border-bottom-color: var(--color-border);
}

.page-home .site-header.is-scrolled .site-drawer__link:hover,
.page-practices .site-header.is-scrolled .site-drawer__link:hover {
	color: var(--color-accent);
}

.site-drawer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.site-drawer__link {
	display: block;
	padding: 12px 0;
	color: inherit;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	border-bottom: 1px solid rgba(216, 210, 200, 0.1);
}

body:not(.page-home):not(.page-practices) .site-drawer__link {
	border-bottom-color: var(--color-border);
}

.site-drawer__link:hover {
	color: var(--color-accent);
}

.site-drawer__link--cta {
	font-weight: 600;
	color: var(--color-accent);
}

.page-home .site-header:not(.is-scrolled) .site-drawer__link--cta,
.page-practices .site-header:not(.is-scrolled) .site-drawer__link--cta {
	color: #c9a066;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 26px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: var(--radius-sm);
	border: 1px solid transparent;
	cursor: pointer;
	transition:
		background var(--transition-default),
		color var(--transition-default),
		border-color var(--transition-default),
		opacity var(--transition-default);
	-webkit-appearance: none;
	appearance: none;
}

.btn--sm {
	min-height: 42px;
	padding: 0 18px;
	font-size: 12px;
}

.btn--primary {
	background: var(--color-accent);
	color: var(--color-white);
	border-color: var(--color-accent);
}

.btn--primary:hover {
	background: #7e623a;
	border-color: #7e623a;
	color: var(--color-white);
}

.btn--ghost {
	background: transparent;
	color: inherit;
	border-color: rgba(245, 243, 239, 0.45);
}

.hero .btn--ghost {
	border-color: rgba(17, 17, 17, 0.28);
	color: var(--color-text);
}

.hero .btn--ghost:hover {
	border-color: var(--color-accent);
	color: #7e623a;
}

.page-home .site-header:not(.is-scrolled) .btn--ghost:hover {
	border-color: var(--color-accent);
	color: #c9a066;
}

.page-home .site-header.is-scrolled .btn--ghost {
	border-color: var(--color-border);
	color: var(--color-text);
}

.page-home .site-header.is-scrolled .btn--ghost:hover {
	border-color: var(--color-accent);
	color: #7e623a;
}

.btn--ghost-light-bg {
	background: transparent;
	color: var(--color-text);
	border-color: var(--color-border);
}

.btn--ghost-light-bg:hover {
	border-color: var(--color-accent);
	color: var(--color-text);
}

.btn--block {
	width: 100%;
}

/* Hero */
.hero {
	--hero-end-bg: var(--color-bg-light);
	--hero-text-light: rgba(245, 243, 239, 0.94);
	--hero-text-dark: var(--color-text);
	background:
		linear-gradient(
			180deg,
			var(--color-bg-dark) 0%,
			var(--hero-end-bg) 100%
		);
	color: var(--color-text);
	padding: 140px 0 120px;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
}

.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 48px 64px;
	align-items: center;
}

.hero__kicker {
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 12px;
	font-weight: 600;
	color: rgba(17, 17, 17, 0.54);
	margin: 0 0 20px;
}

.hero__title {
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 4.5vw, 3.85rem);
	font-weight: 500;
	line-height: 1.12;
	margin: 0 0 24px;
	max-width: 680px;
}

.hero__lead {
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	line-height: 1.55;
	color: rgba(17, 17, 17, 0.72);
	max-width: var(--max-text);
	margin: 0 0 36px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 40px;
}

.hero__markers {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 28px;
	font-size: 13px;
	color: rgba(17, 17, 17, 0.58);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hero__markers li {
	position: relative;
	padding-left: 16px;
}

.hero__markers li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-accent);
	opacity: 0.85;
}

.hero--compact {
	--hero-end-bg: var(--color-white);
	min-height: 0;
	padding: 120px 0 72px;
	align-items: flex-start;
}

.hero--compact .hero__title {
	margin-bottom: 18px;
}

.hero--compact .hero__lead {
	margin-bottom: 0;
}

.hero__kicker,
.hero__title,
.hero__lead,
.hero__markers {
	color: var(--color-text);
}

.page-home .hero__kicker,
.page-home .hero__title,
.page-home .hero__lead {
	color: rgba(245, 243, 239, 0.94);
}

.page-practices .hero--compact {
	min-height: 340px;
	padding: 104px 0 56px;
}

.page-practices .practice-region {
	padding-top: 48px;
}

.page-practices .practice-region[data-reveal] {
	opacity: 1;
	transform: none;
}

/* Sections */
.section {
	padding: var(--section-space) 0;
}

.section--light {
	background: var(--color-bg-light);
}

.section--white {
	background: var(--color-white);
}

.section--contact {
	background: var(--color-bg-light);
	border-top: 1px solid var(--color-border);
}

.section__head {
	max-width: var(--max-text);
	margin-bottom: 56px;
}

.section__title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 3.5vw, 2.6rem);
	font-weight: 500;
	line-height: 1.12;
	margin: 0 0 16px;
	color: var(--color-text);
}

.section__title--left {
	margin-bottom: 20px;
}

.section__lead {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.65;
	color: var(--color-text-secondary);
	max-width: var(--max-text);
}

.section__body {
	min-width: 0;
}

/* Десктоп: заголовок секции 1/3 с липким позиционированием, контент 2/3 */
@media (min-width: 1025px) {
	.section-layout--split {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
		gap: clamp(28px, 4vw, 56px);
		align-items: start;
	}

	.section-layout--split .section__head--sticky {
		position: sticky;
		top: calc(var(--header-sticky-offset) + 16px);
		align-self: start;
		max-width: none;
		margin-bottom: 0;
		padding-right: clamp(4px, 1.5vw, 20px);
	}

	.section-layout--split .section__head--sticky .section__lead {
		max-width: 38ch;
	}

	.section-layout--split .practice-accordions {
		max-width: none;
	}

	.section-layout--split .portfolio-grid {
		max-width: none;
	}

	.contact--sticky-intro .contact__intro--sticky {
		position: sticky;
		top: calc(var(--header-sticky-offset) + 16px);
		align-self: start;
	}
}

/* Cards */
.card-grid {
	display: grid;
	gap: 20px;
}

.card-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 28px 28px 30px;
}

.section--white .card {
	background: var(--color-bg-light);
}

.card--accent-border {
	border-top: 3px solid var(--color-accent);
}

.card__title {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 600;
	margin: 0 0 12px;
	line-height: 1.2;
}

.card__text {
	margin: 0;
	color: var(--color-text-secondary);
	font-size: 0.98rem;
	line-height: 1.65;
}

/* Results */
.result-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0;
	max-width: var(--max-text);
	border-top: 1px solid var(--color-border);
}

.result-list li {
	padding: 22px 0 22px 22px;
	border-bottom: 1px solid var(--color-border);
	position: relative;
	font-size: 1.02rem;
	line-height: 1.55;
	color: var(--color-text);
}

.result-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 30px;
	width: 4px;
	height: 4px;
	background: var(--color-accent);
	border-radius: 50%;
}

/* Approach */
.approach-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 36px 48px;
}

.approach-item {
	padding-top: 8px;
	border-top: 1px solid var(--color-border);
}

.approach-item__num {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	color: var(--color-accent);
	margin-bottom: 14px;
}

.approach-item__title {
	font-family: var(--font-display);
	font-size: 1.28rem;
	margin: 0 0 10px;
	font-weight: 600;
}

.approach-item__text {
	margin: 0;
	color: var(--color-text-secondary);
	line-height: 1.65;
	max-width: 520px;
}

/* About */
.about {
	display: grid;
	grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
	gap: 56px 72px;
	align-items: start;
}

.about__photo {
	width: 100%;
	border-radius: var(--radius-md);
	object-fit: cover;
	aspect-ratio: 4 / 5;
	border: 1px solid var(--color-border);
}

.about__placeholder {
	aspect-ratio: 4 / 5;
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border);
	background: linear-gradient(145deg, var(--color-white), var(--color-bg-light));
	display: flex;
	align-items: center;
	justify-content: center;
}

.about__monogram {
	font-family: var(--font-display);
	font-size: 3.5rem;
	font-weight: 500;
	color: rgba(17, 17, 17, 0.12);
	letter-spacing: 0.08em;
}

.about__text {
	max-width: var(--max-text);
}

.about__text p {
	margin: 0 0 16px;
	color: var(--color-text-secondary);
	line-height: 1.65;
}

/* Contact */
.contact {
	display: grid;
	grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
	gap: 48px 64px;
	align-items: start;
}

.contact__lead {
	margin: 0 0 28px;
	font-size: 1.05rem;
	color: var(--color-text-secondary);
	line-height: 1.65;
	max-width: var(--max-text-narrow);
}

.contact__channels {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 18px;
	margin: 0 0 8px;
	padding: 0;
	list-style: none;
	max-width: var(--max-text-narrow);
}

.contact__channels a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--color-text);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.98rem;
	border-bottom: 1px solid rgba(201, 160, 102, 0.45);
	padding-bottom: 1px;
	transition: border-color var(--transition-default), color var(--transition-default);
}

.contact__channels a:hover {
	border-bottom-color: var(--color-accent);
	color: #7e623a;
}

.contact__channel-icon {
	display: inline-grid;
	width: 20px;
	height: 20px;
	place-items: center;
	flex: 0 0 20px;
	color: var(--color-accent);
}

.contact__channel-icon svg {
	display: block;
	width: 18px;
	height: 18px;
}

.practice-teaser__copy {
	margin: 0;
	max-width: var(--max-text);
	color: var(--color-text-secondary);
	line-height: 1.65;
	font-size: 1.05rem;
}

.practice-teaser__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.practice-teaser__item {
	padding: 20px 20px 22px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-bg-light);
}

.practice-teaser__title {
	font-family: var(--font-display);
	font-size: 1.18rem;
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 8px;
}

.practice-teaser__text {
	margin: 0;
	color: var(--color-text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
}

.practice-teaser__actions {
	margin: 24px 0 0;
}

.contact__form-wrap {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 32px 28px 36px;
}

/* Состояние после успешной отправки формы (без редиректа) */
.contact--thanks {
	grid-template-columns: 1fr;
	max-width: 640px;
}

.contact--thanks .contact__thanks-lead {
	margin-bottom: 28px;
}

.contact--thanks .contact__thanks-actions {
	margin: 0;
}

/* Form */
.form__row {
	margin-bottom: 20px;
}

.form__label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-text-secondary);
	margin-bottom: 8px;
}

.form__input {
	width: 100%;
	padding: 14px 16px;
	font-family: var(--font-body);
	font-size: 16px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: var(--color-white);
	color: var(--color-text);
	transition: border-color var(--transition-default), box-shadow var(--transition-default);
}

.form__input:focus {
	outline: none;
	border-color: rgba(159, 122, 73, 0.55);
	box-shadow: 0 0 0 3px rgba(159, 122, 73, 0.12);
}

.form__textarea {
	resize: vertical;
	min-height: 140px;
}

.form__error {
	margin: 8px 0 0;
	font-size: 13px;
	color: #6f1d1b;
}

.form__hp {
	position: absolute;
	left: -9999px;
	height: 0;
	overflow: hidden;
}

.form__status {
	margin-top: 16px;
	font-size: 14px;
	color: var(--color-text-secondary);
}

.form__status.is-error {
	color: #6f1d1b;
}

.form__status.is-success {
	color: #3d5a3d;
}

.form__consent {
	margin: 18px 0 0;
	font-size: 13px;
	line-height: 1.5;
	color: var(--color-text-secondary);
}

.form__consent a {
	font-weight: 500;
}

.form__submit {
	position: relative;
	gap: 10px;
}

.form__submit:disabled {
	opacity: 0.65;
	cursor: not-allowed;
}

.form__spinner {
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: spin 0.65s linear infinite;
	flex-shrink: 0;
}

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

@media (prefers-reduced-motion: reduce) {
	.form__spinner {
		animation: none;
		border-top-color: transparent;
	}
}

/* Practice detail (extended services) */
.practice-detail .section__head {
	margin-bottom: 28px;
}

.practice-directory {
	display: grid;
	grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
	gap: clamp(32px, 4vw, 64px);
	align-items: start;
}

.practice-directory__content {
	display: grid;
	gap: 88px;
	min-width: 0;
}

.practice-sidebar {
	position: sticky;
	top: calc(var(--header-sticky-offset) + 16px);
	padding-top: 6px;
}

.practice-sidebar__eyebrow {
	margin: 0 0 22px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-text);
}

.practice-nav__list {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.practice-nav__link {
	display: block;
	padding: 11px 0 11px 16px;
	border-left: 2px solid var(--color-border);
	color: var(--color-text-secondary);
	text-decoration: none;
	font-weight: 500;
	line-height: 1.35;
	transition:
		color var(--transition-default),
		border-color var(--transition-default),
		padding-left var(--transition-default);
}

.practice-nav__link:hover,
.practice-nav__link.is-active {
	color: var(--color-text);
	border-left-color: var(--color-accent);
	padding-left: 20px;
}

.practice-page-section {
	scroll-margin-top: calc(var(--header-sticky-offset) + 24px);
	padding-top: 6px;
}

.practice-page-section + .practice-page-section {
	border-top: 1px solid var(--color-border);
	padding-top: 72px;
}

.practice-page-section__header {
	max-width: 820px;
}

.practice-detail__body {
	max-width: 760px;
}

.practice-detail__lead {
	margin: 0 0 24px;
	font-size: 1.1rem;
	line-height: 1.65;
	color: var(--color-text-secondary);
}

.practice-detail__text {
	margin: 0 0 18px;
	font-size: 1.02rem;
	line-height: 1.65;
	color: var(--color-text-secondary);
}

.practice-detail__accent {
	margin: 28px 0;
	padding: 20px 0 20px 22px;
	border-left: 3px solid var(--color-accent);
	font-size: 1.05rem;
	line-height: 1.55;
	color: var(--color-text);
}

.practice-detail__h3 {
	font-family: var(--font-display);
	font-size: 1.28rem;
	font-weight: 600;
	margin: 36px 0 16px;
	color: var(--color-text);
	line-height: 1.2;
}

.stage-list {
	margin: 0 0 24px;
	padding: 0 0 0 1.15em;
	color: var(--color-text-secondary);
	line-height: 1.65;
}

.stage-list li {
	margin-bottom: 14px;
	padding-left: 0.25em;
}

.stage-list li strong {
	color: var(--color-text);
	font-weight: 600;
}

.service-list {
	margin: 0 0 24px;
	padding: 0 0 0 1.15em;
	color: var(--color-text-secondary);
	line-height: 1.6;
}

.service-list li {
	margin-bottom: 10px;
}

.service-list--columns {
	columns: 1;
	column-gap: 40px;
	padding-left: 1.15em;
}

@media (min-width: 720px) {
	.service-list--columns {
		columns: 2;
	}
}

.service-list--columns li {
	break-inside: avoid;
	margin-bottom: 10px;
}

.practice-region .practice-detail__h3:first-child {
	margin-top: 8px;
}

.practice-experience {
	max-width: 820px;
	margin-top: 34px;
}

.practice-experience .portfolio-grid {
	max-width: none;
}

.practice-accordions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 820px;
}

.practice-accordion {
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-white);
	overflow: hidden;
}

.section--white .practice-accordion {
	background: var(--color-bg-light);
}

.practice-accordion__summary {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 22px;
	cursor: pointer;
	font-family: var(--font-body);
	-webkit-appearance: none;
	appearance: none;
}

.practice-accordion__summary::-webkit-details-marker {
	display: none;
}

.practice-accordion__title {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-text);
	text-align: left;
}

.practice-accordion__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--color-accent);
	transition: transform 0.3s ease;
}

.practice-accordion[open] .practice-accordion__icon {
	transform: rotate(180deg);
}

.practice-accordion__panel {
	border-top: 1px solid var(--color-border);
	padding: 8px 22px 8px;
}

.practice-accordion .practice-detail__body {
	max-width: none;
}

.company-subh {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-text-secondary);
	margin: 20px 0 10px;
}

.company-values-block {
	margin-top: 48px;
	padding-top: 40px;
	border-top: 1px solid var(--color-border);
}

.company-values-block__h {
	margin-top: 0;
}

/* CTA strip */
.cta-strip {
	background: var(--color-bg-light);
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	padding: 48px 0;
}

.cta-strip__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	flex-wrap: wrap;
}

.cta-strip__title {
	font-family: var(--font-display);
	font-size: 1.45rem;
	font-weight: 600;
	margin: 0 0 8px;
	color: var(--color-text);
}

.cta-strip__lead {
	margin: 0;
	font-size: 1rem;
	color: var(--color-text-secondary);
	line-height: 1.55;
	max-width: 520px;
}

.cta-strip__btn {
	flex-shrink: 0;
}

.section__lead--portfolio-intro {
	margin-top: 8px;
}

/* Portfolio (как практики: details + summary + панель) */
.portfolio-grid {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 820px;
}

.section--light .portfolio-card.practice-accordion {
	background: var(--color-white);
}

.portfolio-card__summary-main {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	flex: 1;
	min-width: 0;
	text-align: left;
}

.portfolio-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	align-items: center;
}

.portfolio-card__tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin: 0;
	padding-bottom: 2px;
	border-bottom: 1px solid rgba(159, 122, 73, 0.35);
}

.portfolio-card .practice-accordion__panel .portfolio-card__text {
	margin: 0;
	padding: 8px 0 12px;
	font-size: 0.98rem;
	line-height: 1.65;
	color: var(--color-text-secondary);
}

.portfolio-foot {
	margin-top: 48px;
	padding-top: 40px;
	border-top: 1px solid var(--color-border);
	text-align: left;
}

.portfolio-foot__text {
	margin: 0 0 20px;
	font-size: 1.05rem;
	color: var(--color-text-secondary);
	line-height: 1.65;
	max-width: 620px;
}

/* About / education */
.about__text--wide {
	max-width: 820px;
}

.education-block__h {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-text-secondary);
	margin: 28px 0 12px;
}

.education-list {
	margin: 0 0 8px;
	padding: 0 0 0 1.15em;
	color: var(--color-text-secondary);
	line-height: 1.6;
}

.education-list li {
	margin-bottom: 10px;
}

.education-list strong {
	color: var(--color-text);
}

.mission-block__cta {
	margin-top: 28px;
}

/* Values */
.values-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px 36px;
	margin-bottom: 40px;
}

.values-item {
	padding-top: 12px;
	border-top: 1px solid var(--color-border);
}

.values-item__title {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0 0 10px;
	line-height: 1.2;
}

.values-item__text {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.65;
	color: var(--color-text-secondary);
}

.values-foot {
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.65;
	color: var(--color-text-secondary);
	max-width: var(--max-text);
}

.values-foot a {
	font-weight: 600;
}

/* Reveal */
[data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 0.55s ease,
		transform 0.55s ease;
}

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

@media (prefers-reduced-motion: reduce) {
	[data-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Footer */
.site-footer {
	background: var(--color-bg-dark);
	color: rgba(245, 243, 239, 0.78);
	padding: 72px 0 48px;
	margin-top: 0;
}

.site-footer__inner {
	display: grid;
	gap: 32px;
}

.site-footer__name {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 600;
	color: rgba(245, 243, 239, 0.95);
	display: block;
	margin-bottom: 8px;
}

.site-footer__note {
	margin: 0;
	font-size: 14px;
	max-width: 360px;
	line-height: 1.55;
}

.site-footer__contacts {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 28px;
}

.site-footer__link {
	color: rgba(245, 243, 239, 0.88);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.04em;
}

.site-footer__link:hover {
	color: #c9a066;
}

.site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	padding-top: 8px;
	border-top: 1px solid rgba(216, 210, 200, 0.12);
}

.site-footer__legal-link {
	color: rgba(245, 243, 239, 0.55);
	text-decoration: none;
	font-size: 13px;
}

.site-footer__legal-link:hover {
	color: #c9a066;
}

.site-footer__copy {
	margin: 0;
	font-size: 12px;
	color: rgba(245, 243, 239, 0.4);
}

/* Simple pages (thanks, privacy, 404) */
.page-simple main {
	padding: 120px 0 80px;
}

.simple-block {
	max-width: 720px;
}

.simple-block h1 {
	font-family: var(--font-display);
	font-size: clamp(2rem, 3vw, 2.5rem);
	font-weight: 500;
	margin: 0 0 16px;
}

.simple-block p {
	color: var(--color-text-secondary);
	line-height: 1.65;
	margin: 0 0 16px;
}

.simple-block ul {
	color: var(--color-text-secondary);
	line-height: 1.65;
	padding-left: 1.2em;
}

.legal-doc {
	max-width: 760px;
	padding-bottom: 48px;
}

.legal-doc h1 {
	font-family: var(--font-display);
	font-size: 2.25rem;
	margin-bottom: 8px;
}

.legal-doc h2 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	margin-top: 40px;
	margin-bottom: 12px;
}

.legal-doc p,
.legal-doc li {
	color: var(--color-text-secondary);
	line-height: 1.65;
}
