	/* Hero Section */
	.specialist-hero {
		position: relative;
		min-height: 80vh;
		background: radial-gradient(circle at 30% 20%, rgba(168, 120, 90, 0.12), transparent 55%), #050505;
		border-bottom: 1px solid rgba(168, 120, 90, 0.28);
		padding: clamp(24px, 3vw, 36px) clamp(16px, 4vw, 48px) clamp(56px, 8vw, 92px);
	}

	.specialist-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: clamp(24px, 3vw, 40px);
		max-width: var(--content-max);
		margin-left: auto;
		margin-right: auto;
		padding: clamp(24px, 3vw, 36px) clamp(16px, 4vw, 48px) 0;
	}

	.back-link {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		padding: 10px 16px;
		border-radius: 8px;
		border: 1px solid var(--line);
		color: #e6ddd6;
		text-decoration: none;
		font-size: 15px;
		background: rgba(16, 12, 9, 0.58);
		transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
	}

	.back-link:hover {
		border-color: rgba(179, 129, 97, 0.9);
		background: rgba(26, 18, 12, 0.9);
		transform: translateX(-2px);
	}

	.back-link svg {
		width: 20px;
		height: 20px;
	}

	.specialist-hero-content {
		max-width: var(--content-max);
		margin: 0 auto;
	}

	.specialist-intro {
		display: grid;
		grid-template-columns: 380px 1fr;
		gap: clamp(40px, 6vw, 80px);
		align-items: start;
	}

	.specialist-photo-wrapper {
		position: relative;
		align-self: start;
		width: 100%;
		aspect-ratio: 3 / 4;
		border-radius: 16px;
		overflow: hidden;
		border: 1px solid rgba(168, 120, 90, 0.35);
		background: linear-gradient(135deg, rgba(168, 120, 90, 0.08), rgba(0, 0, 0, 0.4));
	}

	.specialist-photo {
		display: block;
		width: 100%;
		height: 112%;
		object-fit: cover;
		object-position: center 20%;
		will-change: transform;
		transform: translate3d(0, var(--photo-parallax, 0px), 0);
	}

	.instagram-badge {
		position: absolute;
		bottom: 16px;
		right: 16px;
		width: 48px;
		height: 48px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(0, 0, 0, 0.75);
		backdrop-filter: blur(8px);
		border: 1px solid rgba(168, 120, 90, 0.5);
		border-radius: 50%;
		color: #e6ddd6;
		transition: transform 0.2s ease, background-color 0.2s ease;
	}

	.instagram-badge:hover {
		transform: scale(1.1);
		background: rgba(168, 120, 90, 0.85);
	}

	.instagram-badge svg {
		width: 24px;
		height: 24px;
	}

	.specialist-info {
		padding-top: 8px;
	}

	.specialist-name-large {
		margin: 0 0 12px;
		font-size: clamp(36px, 4.5vw, 56px);
		line-height: 1.1;
		letter-spacing: -0.02em;
		color: #f7f4f1;
		font-weight: 400;
	}

	.specialist-role-large {
		margin: 0 0 clamp(32px, 4vw, 48px);
		font-size: clamp(18px, 2vw, 24px);
		color: var(--accent);
		font-weight: 400;
	}

	.specialist-specialization {
		margin-top: 28px;
	}

	.section-subtitle {
		margin: 0 0 16px;
		font-size: clamp(20px, 2.2vw, 28px);
		color: #e6ddd6;
		font-weight: 400;
	}

	.specialization-list {
		list-style: none;
		padding: 0;
		margin: 0;
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.specialization-list li {
		position: relative;
		padding-left: 28px;
		font-size: clamp(16px, 1.3vw, 19px);
		color: #b3b3b8;
		line-height: 1.5;
	}

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

	/* Services Section */
	.services-section {
		background: #070707;
		padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 48px);
		border-bottom: 1px solid rgba(168, 120, 90, 0.22);
	}

	.services-container {
		max-width: var(--content-max);
		margin: 0 auto;
	}

	.section-title {
		margin: 0 0 clamp(32px, 4vw, 48px);
		font-size: clamp(32px, 4.2vw, 52px);
		line-height: 1;
		letter-spacing: -0.03em;
		color: #f7f4f1;
		font-weight: 400;
	}

	.services-grid {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
		gap: clamp(20px, 2.5vw, 32px);
	}

	.service-card {
		padding: 28px;
		border: 1px solid rgba(168, 120, 90, 0.24);
		border-radius: 14px;
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.3));
		transition: transform 0.3s ease, border-color 0.3s ease;
		opacity: 0;
		transform: translateY(20px);
	}

	.service-card.is-visible {
		animation: fadeInUp 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
	}

	@keyframes fadeInUp {
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.service-card:hover {
		transform: translateY(-4px);
		border-color: rgba(184, 138, 105, 0.6);
	}

	.service-card-header {
		display: flex;
		align-items: center;
		gap: 14px;
		margin-bottom: 16px;
	}

	.service-icon {
		width: 28px;
		height: 28px;
		color: var(--accent);
		flex-shrink: 0;
	}

	.service-card-title {
		margin: 0;
		font-size: clamp(19px, 1.8vw, 23px);
		color: #f0ede9;
		font-weight: 400;
		line-height: 1.2;
	}

	.service-card-description {
		margin: 0 0 18px;
		font-size: clamp(15px, 1.2vw, 17px);
		color: #b3b3b8;
		line-height: 1.5;
	}

	.service-card-price {
		margin: 0;
		font-size: clamp(20px, 2vw, 26px);
		color: var(--accent);
		font-weight: 700;
	}

	/* Experience Section */
	.experience-section {
		background: radial-gradient(circle at 70% 30%, rgba(168, 120, 90, 0.1), transparent 60%), #060606;
		padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 48px);
		border-bottom: 1px solid rgba(168, 120, 90, 0.22);
	}

	.experience-container {
		max-width: var(--content-max);
		margin: 0 auto;
	}

	.experience-content {
		display: grid;
		grid-template-columns: 1.5fr 1fr;
		gap: clamp(40px, 6vw, 80px);
		align-items: start;
	}

	.experience-column {
		display: flex;
		flex-direction: column;
		gap: 32px;
	}

	.experience-item {
		display: flex;
		gap: 24px;
		align-items: start;
		opacity: 0;
		transform: translateY(20px);
	}

	.experience-item.is-visible {
		animation: fadeInUp 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
	}

	.experience-icon {
		width: 48px;
		height: 48px;
		flex-shrink: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(168, 120, 90, 0.15);
		border: 1px solid rgba(168, 120, 90, 0.35);
		border-radius: 12px;
		color: var(--accent);
	}

	.experience-icon svg {
		width: 26px;
		height: 26px;
	}

	.experience-text {
		flex: 1;
	}

	.experience-title {
		margin: 0 0 12px;
		font-size: clamp(20px, 2vw, 26px);
		color: #e6ddd6;
		font-weight: 400;
	}

	.experience-description {
		margin: 0;
		font-size: clamp(15px, 1.2vw, 17px);
		color: #b3b3b8;
		line-height: 1.6;
	}

	.experience-highlights {
		display: flex;
		flex-direction: column;
		gap: 24px;
	}

	.highlight-card {
		padding: 32px;
		background: linear-gradient(135deg, rgba(168, 120, 90, 0.08), rgba(0, 0, 0, 0.4));
		border: 1px solid rgba(168, 120, 90, 0.3);
		border-radius: 16px;
		text-align: center;
		opacity: 0;
		transform: scale(0.95);
	}

	.highlight-card.is-visible {
		animation: scaleIn 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
	}

	@keyframes scaleIn {
		to {
			opacity: 1;
			transform: scale(1);
		}
	}

	.highlight-number {
		margin: 0 0 8px;
		font-size: clamp(40px, 5vw, 56px);
		color: var(--accent);
		font-weight: 700;
		line-height: 1;
	}

	.highlight-label {
		margin: 0;
		font-size: clamp(15px, 1.2vw, 17px);
		color: #b3b3b8;
		line-height: 1.4;
	}

	/* Cases Section */
	.cases-section {
		background: #070707;
		padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 48px);
		border-bottom: 1px solid rgba(168, 120, 90, 0.22);
	}

	.cases-container {
		max-width: var(--content-max);
		margin: 0 auto;
	}

	.cases-subtitle {
		margin: -12px 0 clamp(32px, 4vw, 48px);
		font-size: clamp(16px, 1.4vw, 18px);
		color: var(--muted);
	}

	.cases-grid {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		gap: clamp(20px, 2.5vw, 32px);
	}

	.case-card {
		position: relative;
		border: 1px solid rgba(168, 120, 90, 0.24);
		border-radius: 14px;
		overflow: hidden;
		background: rgba(0, 0, 0, 0.3);
		transition: transform 0.3s ease, border-color 0.3s ease;
		opacity: 0;
		transform: translateY(20px);
	}

	.case-card.is-visible {
		animation: fadeInUp 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
	}

	.case-card:hover {
		transform: translateY(-4px);
		border-color: rgba(184, 138, 105, 0.6);
	}

	.case-badge {
		position: absolute;
		top: 14px;
		left: 14px;
		padding: 6px 12px;
		background: rgba(0, 0, 0, 0.8);
		backdrop-filter: blur(8px);
		border: 1px solid rgba(168, 120, 90, 0.5);
		border-radius: 6px;
		color: var(--accent);
		font-size: 13px;
		font-weight: 700;
		z-index: 1;
	}

	.case-image {
		width: 100%;
		aspect-ratio: 4 / 3;
		object-fit: cover;
		object-position: center;
	}

	.case-content {
		padding: 24px;
	}

	.case-title {
		margin: 0 0 12px;
		font-size: clamp(19px, 1.8vw, 22px);
		color: #f0ede9;
		font-weight: 400;
		line-height: 1.3;
	}

	.case-description {
		margin: 0 0 16px;
		font-size: clamp(14px, 1.1vw, 16px);
		color: #b3b3b8;
		line-height: 1.5;
	}

	.case-tags {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
	}

	.case-tag {
		padding: 6px 12px;
		background: rgba(168, 120, 90, 0.15);
		border: 1px solid rgba(168, 120, 90, 0.3);
		border-radius: 6px;
		font-size: 13px;
		color: #b99c7e;
	}

	/* CTA Section */
	.cta-section {
		background: radial-gradient(circle at 50% 10%, rgba(168, 120, 90, 0.15), transparent 65%), #050505;
		padding: clamp(64px, 9vw, 108px) clamp(16px, 4vw, 48px);
		border-bottom: 1px solid rgba(168, 120, 90, 0.28);
	}

	.cta-container {
		max-width: 860px;
		margin: 0 auto;
	}

	.cta-content {
		opacity: 0;
		transform: translateY(20px);
	}

	.cta-content.is-visible {
		animation: fadeInUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
	}

	.cta-title {
		margin: 0 0 16px;
		font-size: clamp(34px, 4.5vw, 52px);
		line-height: 1.1;
		letter-spacing: -0.02em;
		color: #f7f4f1;
		font-weight: 400;
		text-align: center;
	}

	.cta-description {
		margin: 0 0 clamp(32px, 4vw, 48px);
		font-size: clamp(17px, 1.5vw, 20px);
		color: #b3b3b8;
		line-height: 1.5;
		text-align: center;
	}

	.cta-benefits {
		display: flex;
		flex-direction: column;
		gap: 16px;
		margin-bottom: clamp(36px, 5vw, 56px);
		padding: 28px;
		background: rgba(168, 120, 90, 0.08);
		border: 1px solid rgba(168, 120, 90, 0.25);
		border-radius: 12px;
	}

	.cta-benefit {
		display: flex;
		align-items: center;
		gap: 12px;
		font-size: clamp(15px, 1.3vw, 17px);
		color: #e6ddd6;
	}

	.cta-benefit svg {
		width: 22px;
		height: 22px;
		color: var(--accent);
		flex-shrink: 0;
	}

	/* Form Styles */
	.cta-form {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

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

	.form-group {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.form-label {
		font-size: 15px;
		color: #e6ddd6;
		font-weight: 400;
	}

	.form-input,
	.form-select,
	.form-textarea {
		padding: 14px 18px;
		background: rgba(16, 12, 9, 0.6);
		border: 1px solid rgba(168, 120, 90, 0.35);
		border-radius: 8px;
		color: #f0ede9;
		font-size: 16px;
		font-family: "CenturyGothic", sans-serif;
		transition: border-color 0.2s ease, background-color 0.2s ease;
	}

	.form-input:focus,
	.form-select:focus,
	.form-textarea:focus {
		outline: none;
		border-color: var(--accent);
		background: rgba(26, 18, 12, 0.8);
	}

	.form-input::placeholder,
	.form-textarea::placeholder {
		color: #7a7a7f;
	}

	.form-select {
		cursor: pointer;
		appearance: none;
		background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23b99c7e' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
		background-repeat: no-repeat;
		background-position: right 16px center;
		padding-right: 42px;
	}

	.form-select option {
		background: #1a1612;
		color: #f0ede9;
	}

	.form-textarea {
		resize: vertical;
		min-height: 100px;
	}

	.form-captcha {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.form-captcha .form-input {
		max-width: 200px;
	}

	.form-privacy {
		margin-top: 8px;
	}

	.privacy-label {
		display: flex;
		align-items: start;
		gap: 10px;
		font-size: 14px;
		color: #b3b3b8;
		cursor: pointer;
	}

	.privacy-checkbox {
		margin-top: 2px;
		width: 18px;
		height: 18px;
		cursor: pointer;
		accent-color: var(--accent);
	}

	.privacy-link {
		color: var(--accent);
		text-decoration: underline;
		transition: color 0.2s ease;
	}

	.privacy-link:hover {
		color: #b99c7e;
	}

	.form-submit {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		padding: 18px 32px;
		background: var(--accent);
		border: 1px solid var(--accent);
		border-radius: 8px;
		color: #000000;
		font-size: clamp(16px, 1.3vw, 18px);
		font-family: "CenturyGothic", sans-serif;
		font-weight: 700;
		cursor: pointer;
		transition: transform 0.2s ease, background-color 0.2s ease;
		width: 100%;
	}

	.form-submit:hover {
		transform: translateY(-2px);
		background: #95684e;
		border-color: #95684e;
	}

	.form-submit svg {
		width: 20px;
		height: 20px;
	}

	.form-input.is-error,
	.form-select.is-error,
	.form-textarea.is-error {
		border-color: #d64545 !important;
		background-color: rgba(214, 69, 69, 0.08);
		animation: shake 0.3s ease-in-out;
	}

	@keyframes shake {
		0%, 100% { transform: translateX(0); }
		25% { transform: translateX(-4px); }
		75% { transform: translateX(4px); }
	}

	/* Footer */
	.site-footer {
		background: #060606;
		border-top: 1px solid rgba(168, 120, 90, 0.28);
		padding: clamp(48px, 7vw, 72px) clamp(16px, 4vw, 48px) clamp(24px, 3vw, 36px);
	}

	.site-footer-inner {
		max-width: var(--content-max);
		margin: 0 auto;
	}

	.site-footer-grid {
		display: grid;
		grid-template-columns: 1.5fr repeat(3, 1fr);
		gap: clamp(32px, 5vw, 64px);
		margin-bottom: clamp(36px, 5vw, 56px);
	}

	.footer-column {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	.footer-logo {
		width: clamp(140px, 12vw, 180px);
		height: auto;
	}

	.footer-description {
		margin: 0;
		font-size: 15px;
		color: #9f9fa4;
		line-height: 1.6;
	}

	.footer-title {
		margin: 0;
		font-size: clamp(17px, 1.5vw, 20px);
		color: #e6ddd6;
		font-weight: 400;
	}

	.footer-list {
		list-style: none;
		padding: 0;
		margin: 0;
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.footer-link {
		color: #b3b3b8;
		text-decoration: none;
		font-size: 15px;
		transition: color 0.2s ease;
	}

	.footer-link:hover {
		color: var(--accent);
	}

	.footer-text {
		color: #9f9fa4;
		font-size: 15px;
		line-height: 1.5;
	}

	.site-footer-bottom {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 20px;
		padding-top: 28px;
		border-top: 1px solid rgba(168, 120, 90, 0.22);
	}

	.footer-copyright {
		margin: 0;
		color: #7a7a7f;
		font-size: 14px;
	}

	.footer-legal {
		display: flex;
		align-items: center;
		gap: 24px;
	}

	.footer-legal-link {
		color: #9f9fa4;
		text-decoration: none;
		font-size: 14px;
		transition: color 0.2s ease;
	}

	.footer-legal-link:hover {
		color: var(--accent);
	}

	/* Responsive Design */
	@media (max-width: 1100px) {
		.specialist-intro {
			grid-template-columns: 320px 1fr;
			gap: 40px;
		}

		.experience-content {
			grid-template-columns: 1fr;
		}

		.experience-highlights {
			flex-direction: row;
		}

		.highlight-card {
			flex: 1;
		}
	}

	@media (max-width: 900px) {
		.services-grid {
			grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		}

		.cases-grid {
			grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
		}

		.site-footer-grid {
			grid-template-columns: repeat(2, 1fr);
		}
	}

	@media (max-width: 768px) {
		.specialist-hero {
			padding: 18px 16px 48px;
		}

		.specialist-header {
			margin-bottom: 28px;
		}

		.brand-logo {
			width: 120px;
		}

		.specialist-intro {
			grid-template-columns: 1fr;
			gap: 28px;
		}

		.specialist-photo-wrapper {
			width: min(100%, 360px);
			max-width: 360px;
			margin: 0 auto;
			position: relative;
			top: auto;
			--photo-parallax: 0px;
		}

		.specialist-photo {
			height: 100%;
			transform: none !important;
		}

		.specialist-name-large {
			font-size: clamp(30px, 8vw, 38px);
		}

		.specialist-role-large {
			font-size: clamp(16px, 4vw, 19px);
			margin-bottom: 24px;
		}

		.services-section,
		.experience-section,
		.cases-section,
		.cta-section {
			padding: 48px 16px;
		}

		.section-title {
			font-size: clamp(28px, 8vw, 36px);
			margin-bottom: 28px;
		}

		.services-grid {
			grid-template-columns: 1fr;
		}

		.service-card {
			padding: 20px;
		}

		.experience-highlights {
			flex-direction: column;
		}

		.cases-grid {
			grid-template-columns: 1fr;
		}

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

		.cta-title {
			font-size: clamp(28px, 8vw, 36px);
		}

		.cta-description {
			font-size: 16px;
		}

		.site-footer-grid {
			grid-template-columns: 1fr;
			gap: 32px;
		}

		.site-footer-bottom {
			flex-direction: column;
			align-items: flex-start;
			gap: 16px;
		}

		.footer-legal {
			flex-direction: column;
			align-items: flex-start;
			gap: 12px;
		}
	}

	@media (prefers-reduced-motion: reduce) {
		.specialist-photo-wrapper {
			position: relative;
			top: auto;
			--photo-parallax: 0px;
		}

		.specialist-photo {
			transform: none !important;
		}
	}

	@media (min-width: 769px) {
		.specialist-photo-wrapper {
			position: sticky;
			top: clamp(20px, 8vh, 72px);
		}
	}

	@media (prefers-reduced-motion: reduce) {
		.service-card.is-visible,
		.experience-item.is-visible,
		.highlight-card.is-visible,
		.case-card.is-visible,
		.cta-content.is-visible {
			animation: none;
			opacity: 1;
			transform: none;
		}
	}


	/* ===== style.css (priority overrides) ===== */
	@font-face {
		font-family: "CenturyGothic";
		src: url("assets/fonts/CenturyGothic.woff2") format("woff2");
		font-weight: 400;
		font-style: normal;
		font-display: fallback;
	}

	@font-face {
		font-family: "CenturyGothic";
		src: url("assets/fonts/CenturyGothic-Italic.woff2") format("woff2");
		font-weight: 400;
		font-style: italic;
		font-display: swap;
	}

	@font-face {
		font-family: "CenturyGothic";
		src: url("assets/fonts/CenturyGothic-Bold.woff2") format("woff2");
		font-weight: 700;
		font-style: normal;
		font-display: swap;
	}

	@font-face {
		font-family: "CenturyGothic";
		src: url("assets/fonts/CenturyGothic-BoldItalic.woff2") format("woff2");
		font-weight: 700;
		font-style: italic;
		font-display: swap;
	}

	:root {
		--bg: #060606;
		--text: #f4f4f5;
		--muted: #9f9fa4;
		--accent: #a8785a;
		--line: rgba(168, 120, 90, 0.45);
		--content-max: 1260px;
	}

	@keyframes hero-fade-up {
		from {
			opacity: 0;
			transform: translateY(22px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

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

	@keyframes news-fade-up {
		from {
			opacity: 0;
			transform: translateY(24px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	@keyframes service-pulse {
		0%, 100% {
			box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
		}
		50% {
			box-shadow: 0 18px 42px rgba(168, 120, 90, 0.12);
		}
	}

	@keyframes panel-expand {
		from {
			opacity: 0;
			transform: translateY(-10px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

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

	* {
		box-sizing: border-box;
	}

	html,
	body {
		margin: 0;
		min-height: 100%;
	}

	body {
		background: #000;
		color: var(--text);
		font-family: "CenturyGothic", sans-serif;
		font-weight: 400;
		font-synthesis: none;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		font-weight: 400;
	}

	.hero-screen {
		position: relative;
		min-height: 100svh;
		overflow: hidden;
		isolation: isolate;
		background: black;
	}

	.hero-content {
		position: relative;
		z-index: 3;
		width: min(1180px, calc(100% - 96px));
		margin-left: clamp(30px, 4vw, 48px);
		padding-top: clamp(24px, 3vw, 36px);
		padding-bottom: 104px;
	}

	.hero-top {
		margin-bottom: clamp(16px, 2.3vw, 24px);
	}

	.brand-logo {
		width: clamp(140px, 12vw, 200px);
		height: auto;
	}

	.license-chip {
		width: fit-content;
		border: 1px solid var(--line);
		border-radius: 8px;
		padding: 10px 16px;
		color: #b28a70;
		font-size: clamp(12px, 1.05vw, 15px);
		line-height: 1.34;
		margin-bottom: clamp(18px, 2.4vw, 26px);
		backdrop-filter: blur(2px);
		background: rgba(0, 0, 0, 0.597);
	}

	.license-chip p {
		margin: 0;
	}

	.hero-title {
		margin: 0;
		max-width: 6.85em;
		font-size: clamp(50px, 6vw, 78px);
		line-height: 0.97;
		letter-spacing: -0.045em;
		text-wrap: balance;
	}

	.hero-cta {
		display: flex;
		align-items: center;
		gap: 16px;
		margin-top: clamp(22px, 2.8vw, 28px);
		flex-wrap: wrap;
	}

	.cta-button {
		display: inline-flex;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
		min-width: clamp(262px, 24vw, 318px);
		border: 1px solid var(--line);
		border-radius: 8px;
		padding: 15px 21px;
		color: #efeff1;
		text-decoration: none;
		font-size: clamp(15px, 1.15vw, 16px);
		line-height: 1;
		background: rgba(8, 8, 8, 0.42);
		transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
	}

	.cta-button:focus-visible,
	.news-all-button:focus-visible,
	.news-card-button:focus-visible,
	.service-trigger:focus-visible,
	.service-book-button:focus-visible,
	.specialist-link:focus-visible,
	.specialist-book:focus-visible,
	.consultation-input:focus-visible,
	.consultation-textarea:focus-visible,
	.consultation-option:focus-within,
	.consultation-submit:focus-visible {
		outline: 2px solid rgba(210, 166, 135, 0.95);
		outline-offset: 3px;
		border-color: rgba(210, 166, 135, 0.95);
	}

	.hero-cta .cta-button:first-child {
		background: var(--accent);
		border-color: var(--accent);
		color: #000000;
	}

	.cta-button span {
		font-size: 1.3em;
		line-height: 1;
	}

	.cta-button:hover {
		transform: translateY(-1px);
		border-color: rgba(179, 129, 97, 0.9);
		background: rgba(17, 12, 9, 0.78);
	}

	.hero-cta .cta-button:first-child:hover {
		background: #95684e;
		border-color: #95684e;
	}

	.hero-note {
		margin-top: 18px;
		display: inline-flex;
		align-items: center;
		gap: 10px;
		color: #adadb2;
		font-size: clamp(13px, 1vw, 15px);
	}

	.hero-note svg {
		width: 24px;
		height: 24px;
		color: #b78767;
		flex: 0 0 auto;
	}

	.hero-note p {
		margin: 0;
	}

	.hero-model {
		position: absolute;
		right: 14px;
		bottom: 0;
		width: min(64vw, 900px);
		height: min(96vh, 980px);
		max-height: min(96vh, 980px);
		object-fit: contain;
		object-position: center top;
		opacity: 0;
		visibility: hidden;
		transform: translate3d(0, var(--hero-parallax-y, 0px), 0);
		will-change: transform;
		pointer-events: none;
	}


	.hero-model.is-visible {
		opacity: 1;
		visibility: visible;
	}

	.hero-model[hidden] {
		display: none;
	}

	.hero-benefits {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 4;
		display: block;
		background: linear-gradient(180deg, rgba(7, 7, 7, 0.18), rgba(5, 5, 5, 0.94) 65%);
		border-top: 1px solid rgba(173, 127, 97, 0.44);
		backdrop-filter: blur(4px);
	}

	.hero-benefits-track {
		display: flex;
		align-items: stretch;
		width: min(1180px, calc(100% - 96px));
		margin-left: clamp(30px, 4vw, 48px);
	}

	.benefit-item {
		flex: 1 1 0;
		min-width: 0;
		min-height: 92px;
		display: flex;
		align-items: center;
		gap: 12px;
		color: #b3b3b8;
		padding: 18px 24px;
	}

	.benefit-item svg {
		width: 30px;
		height: 30px;
		color: #b57e5c;
		flex: 0 0 auto;
	}

	.benefit-item p {
		margin: 0;
		font-size: clamp(14px, 1.1vw, 17px);
		line-height: 1.32;
	}

	.benefit-divider {
		width: 1px;
		margin: 18px 0;
		background: rgba(157, 113, 86, 0.5);
	}

	.news-promotions {
		position: relative;
		background: radial-gradient(circle at 20% -10%, rgba(168, 120, 90, 0.14), transparent 48%), #070707;
		padding: clamp(44px, 6vw, 84px) clamp(16px, 4vw, 48px) clamp(56px, 8vw, 92px);
		border-top: 1px solid rgba(168, 120, 90, 0.28);
	}

	.news-promotions-title,
	.news-all-button-desktop,
	.news-card,
	.news-all-button-mobile {
		opacity: 0;
	}

	@media (prefers-reduced-motion: no-preference) {
		.news-promotions-title.is-visible,
		.news-all-button-desktop.is-visible {
			animation: news-fade-up 0.7s cubic-bezier(0.2, 0.65, 0.2, 1) forwards;
			animation-delay: 0.08s;
		}

		.news-card.is-visible {
			animation: news-fade-up 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
		}

		.news-grid > :nth-child(1).is-visible {
			animation-delay: 0.18s;
		}

		.news-grid > :nth-child(2).is-visible {
			animation-delay: 0.28s;
		}

		.news-grid > :nth-child(3).is-visible {
			animation-delay: 0.38s;
		}

		.news-grid > :nth-child(4).is-visible {
			animation-delay: 0.48s;
		}

		.news-all-button-mobile.is-visible {
			animation: news-fade-up 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
			animation-delay: 0.56s;
		}
	}

	.news-promotions-head {
		width: min(var(--content-max), 100%);
		margin: 0 auto 28px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
	}

	.news-promotions-title {
		margin: 0;
		font-size: clamp(30px, 4.1vw, 52px);
		line-height: 0.96;
		letter-spacing: -0.04em;
		color: #f7f4f1;
	}

	.news-all-button {
		display: inline-flex;
		align-items: center;
		gap: 10px;
		padding: 12px 18px;
		border-radius: 8px;
		border: 1px solid var(--line);
		color: #e6ddd6;
		text-decoration: none;
		font-size: 15px;
		background: rgba(16, 12, 9, 0.58);
		transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
	}

	.news-all-button:hover {
		border-color: rgba(179, 129, 97, 0.9);
		background: rgba(26, 18, 12, 0.9);
		transform: translateY(-1px);
	}

	.news-all-button-mobile {
		display: none;
		margin-top: 16px;
	}

	.news-grid {
		width: min(var(--content-max), 100%);
		margin: 0 auto;
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: clamp(14px, 1.8vw, 22px);
	}

	.news-card {
		display: flex;
		flex-direction: column;
		min-height: 100%;
		border: 1px solid rgba(168, 120, 90, 0.24);
		border-radius: 14px;
		overflow: hidden;
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.25));
		transition: border-color 0.2s ease, transform 0.2s ease;
	}

	.news-card:hover {
		border-color: rgba(184, 138, 105, 0.7);
		transform: translateY(-2px);
	}

	.news-card-image {
		width: 100%;
		aspect-ratio: 16 / 11;
		object-fit: cover;
		object-position: center 18%;
		border-bottom: 1px solid rgba(168, 120, 90, 0.22);
		filter: saturate(0.83) contrast(0.95);
	}

	.news-card-content {
		padding: 16px 16px 18px;
		display: flex;
		flex-direction: column;
		gap: 10px;
		flex: 1 1 auto;
	}

	.news-card-title {
		margin: 0;
		font-size: clamp(18px, 1.45vw, 23px);
		line-height: 1.1;
		color: #f7f4f0;
	}

	.news-card-text {
		margin: 0;
		font-size: 14px;
		line-height: 1.45;
		color: #bfb7b0;
		flex: 1 1 auto;
	}

	.news-card-button {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 42px;
		padding: 10px 14px;
		border-radius: 8px;
		border: 1px solid rgba(168, 120, 90, 0.6);
		background: rgba(168, 120, 90, 0.12);
		color: #f2e9e1;
		text-decoration: none;
		font-size: 14px;
		line-height: 1;
		transition: border-color 0.2s ease, background-color 0.2s ease;
	}

	.news-card-button:hover {
		border-color: rgba(190, 143, 109, 0.9);
		background: rgba(168, 120, 90, 0.2);
	}

	.services {
		position: relative;
		padding: clamp(48px, 7vw, 96px) clamp(16px, 4vw, 48px) clamp(58px, 9vw, 108px);
		border-top: 1px solid rgba(168, 120, 90, 0.24);
		background: radial-gradient(circle at 88% 4%, rgba(185, 156, 126, 0.2), transparent 44%), radial-gradient(circle at 8% 76%, rgba(168, 120, 90, 0.16), transparent 58%), #040404;
		overflow: hidden;
	}

	.services-inner {
		width: min(var(--content-max), 100%);
		margin: 0 auto;
	}

	.services-head {
		margin-bottom: clamp(20px, 2.5vw, 30px);
		display: grid;
		gap: 10px;
	}

	.services-title {
		margin: 0;
		font-size: clamp(30px, 4.1vw, 54px);
		line-height: 0.95;
		letter-spacing: -0.04em;
		color: #f8f3ed;
	}

	.services-lead {
		margin: 0;
		max-width: 66ch;
		font-size: clamp(14px, 1.2vw, 17px);
		line-height: 1.45;
		color: #bbb1a8;
	}

	.services-accordion {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
		align-items: start;
	}

	.service-item {
		border-radius: 14px;
		border: 1px solid rgba(185, 156, 126, 0.32);
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(0, 0, 0, 0.28));
		overflow: clip;
		transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
	}

	.service-item:hover {
		border-color: rgba(194, 167, 138, 0.7);
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.32));
		transform: translateY(-3px);
		box-shadow: 0 8px 32px rgba(168, 120, 90, 0.15);
	}

	.service-item.is-open {
		border-color: rgba(185, 156, 126, 0.9);
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.38));
		box-shadow: 0 8px 28px rgba(168, 120, 90, 0.12);
	}

	.service-trigger {
		width: 100%;
		padding: 18px clamp(14px, 2vw, 24px);
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
		border: 0;
		background: transparent;
		color: #f2ece5;
		font: inherit;
		text-align: left;
		cursor: pointer;
	}

	.service-name {
		font-size: clamp(17px, 1.55vw, 24px);
		line-height: 1.1;
	}

	.service-icon {
		position: relative;
		width: 24px;
		height: 24px;
		border-radius: 50%;
		border: 1px solid rgba(185, 156, 126, 0.55);
		flex: 0 0 auto;
		transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.3s ease;
	}

	.service-icon::before,
	.service-icon::after {
		content: "";
		position: absolute;
		left: 50%;
		top: 50%;
		width: 10px;
		height: 1px;
		background: #c9ae90;
		transform: translate(-50%, -50%);
	}

	.service-icon::after {
		transform: translate(-50%, -50%) rotate(90deg);
		transition: opacity 0.2s ease;
	}

	.service-item.is-open .service-icon {
		transform: rotate(180deg);
		border-color: rgba(196, 169, 139, 0.9);
	}

	.service-item.is-open .service-icon::after {
		opacity: 0;
	}

	.service-panel {
		border-top: 1px solid rgba(185, 156, 126, 0.26);
		padding: 0 clamp(14px, 2vw, 24px) 16px;
		animation: panel-expand 0.3s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
	}

	.service-panel-inner {
		display: grid;
		gap: 14px;
		padding-top: 14px;
	}

	.service-description {
		margin: 0;
		font-size: clamp(14px, 1.1vw, 16px);
		line-height: 1.52;
		color: #ccc0b6;
		max-width: 75ch;
	}

	.service-footer {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
	}

	.service-price {
		margin: 0;
		font-size: clamp(18px, 1.4vw, 22px);
		line-height: 1;
		letter-spacing: -0.02em;
		color: #f2e8de;
	}

	.service-book-button {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 40px;
		padding: 10px 18px;
		border-radius: 8px;
		border: 1px solid rgba(185, 156, 126, 0.68);
		background: rgba(185, 156, 126, 0.14);
		color: #f3e9df;
		text-decoration: none;
		font-size: 14px;
		line-height: 1;
		transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
	}

	.service-book-button:hover {
		border-color: rgba(196, 169, 139, 0.95);
		background: rgba(185, 156, 126, 0.26);
		transform: translateY(-1px);
		box-shadow: 0 4px 12px rgba(168, 120, 90, 0.12);
	}

	.specialists {
		position: relative;
		padding: clamp(48px, 7vw, 96px) clamp(16px, 4vw, 48px) clamp(58px, 9vw, 108px);
		border-top: 1px solid rgba(168, 120, 90, 0.24);
		background: radial-gradient(circle at 10% 0%, rgba(185, 156, 126, 0.16), transparent 34%), radial-gradient(circle at 90% 18%, rgba(168, 120, 90, 0.14), transparent 42%), #030303;
		overflow: hidden;
	}

	.specialists-inner {
		width: min(var(--content-max), 100%);
		margin: 0 auto;
	}

	.specialists-head {
		display: grid;
		gap: 10px;
		margin-bottom: clamp(20px, 2.8vw, 34px);
	}

	.section-kicker {
		margin: 0;
		font-size: 12px;
		line-height: 1;
		letter-spacing: 0.22em;
		text-transform: uppercase;
		color: #c9ae90;
	}

	.specialists-title {
		margin: 0;
		
		font-size: clamp(30px, 4.2vw, 56px);
		line-height: 0.95;
		letter-spacing: -0.04em;
		color: #f8f3ed;
		text-wrap: balance;
	}

	.specialists-lead {
		margin: 0;
		max-width: 72ch;
		font-size: clamp(14px, 1.2vw, 17px);
		line-height: 1.45;
		color: #bbb1a8;
	}

	.specialists-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.specialist-card {
		display: grid;
		gap: 18px;
		padding: 14px;
		border-radius: 18px;
		border: 1px solid rgba(185, 156, 126, 0.3);
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.34));
		box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
		overflow: hidden;
		transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
	}

	.specialist-card:hover {
		transform: translateY(-3px);
		border-color: rgba(196, 169, 139, 0.72);
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.38));
		box-shadow: 0 24px 56px rgba(168, 120, 90, 0.18);
	}

	.specialist-card:hover .specialist-portrait {
		transform: scale(1.02);
	}

	.specialist-portrait {
		position: relative;
		min-height: 242px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		padding: 18px;
		border-radius: 14px;
		overflow: hidden;
		isolation: isolate;
		background: linear-gradient(145deg, rgba(185, 156, 126, 0.38), rgba(0, 0, 0, 0.12));
		transition: transform 0.3s ease;
	}

	.specialist-photo {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center 14%;
		z-index: 0;
		border-radius: inherit;
		filter: saturate(0.94) contrast(1.02);
	}

	.specialist-portrait::before,
	.specialist-portrait::after {
		content: "";
		position: absolute;
		border-radius: 999px;
		pointer-events: none;
	}

	.specialist-portrait::before {
		inset: 14% auto auto 12%;
		width: 52%;
		height: 52%;
		background: radial-gradient(circle, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 72%);
		opacity: 0.75;
	}

	.specialist-portrait::after {
		right: -8%;
		bottom: -14%;
		width: 58%;
		height: 58%;
		background: radial-gradient(circle, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0) 70%);
	}

	.specialist-portrait--1 {
		background: linear-gradient(160deg, rgba(185, 156, 126, 0.42), rgba(0, 0, 0, 0.12)), radial-gradient(circle at 18% 16%, rgba(237, 230, 218, 0.48), transparent 36%), linear-gradient(180deg, #1c1410, #050505);
	}

	.specialist-portrait--2 {
		background: linear-gradient(160deg, rgba(237, 230, 218, 0.38), rgba(0, 0, 0, 0.14)), radial-gradient(circle at 82% 18%, rgba(185, 156, 126, 0.44), transparent 36%), linear-gradient(180deg, #231815, #050505);
	}

	.specialist-portrait--3 {
		background: linear-gradient(160deg, rgba(185, 156, 126, 0.36), rgba(0, 0, 0, 0.16)), radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.16), transparent 32%), linear-gradient(180deg, #18120f, #050505);
	}

	.specialist-portrait--4 {
		background: linear-gradient(160deg, rgba(237, 230, 218, 0.34), rgba(0, 0, 0, 0.14)), radial-gradient(circle at 80% 16%, rgba(185, 156, 126, 0.38), transparent 35%), linear-gradient(180deg, #1b1714, #050505);
	}

	.specialist-portrait--5 {
		background: linear-gradient(160deg, rgba(168, 120, 90, 0.42), rgba(0, 0, 0, 0.14)), radial-gradient(circle at 25% 18%, rgba(237, 230, 218, 0.28), transparent 30%), linear-gradient(180deg, #241711, #050505);
	}

	.specialist-portrait--6 {
		background: linear-gradient(160deg, rgba(185, 156, 126, 0.34), rgba(0, 0, 0, 0.14)), radial-gradient(circle at 76% 18%, rgba(237, 230, 218, 0.34), transparent 34%), linear-gradient(180deg, #1d1713, #050505);
	}

	.specialist-portrait--7 {
		background: linear-gradient(160deg, rgba(237, 230, 218, 0.3), rgba(0, 0, 0, 0.16)), radial-gradient(circle at 24% 20%, rgba(168, 120, 90, 0.34), transparent 34%), linear-gradient(180deg, #171211, #050505);
	}

	.specialist-portrait--8 {
		background: linear-gradient(160deg, rgba(185, 156, 126, 0.32), rgba(0, 0, 0, 0.14)), radial-gradient(circle at 78% 20%, rgba(237, 230, 218, 0.3), transparent 34%), linear-gradient(180deg, #1a1512, #050505);
	}

	.specialist-initials {
		position: relative;
		z-index: 1;
		align-self: flex-start;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 74px;
		min-height: 74px;
		padding: 12px;
		border: 1px solid rgba(237, 230, 218, 0.26);
		border-radius: 50%;
		background: rgba(0, 0, 0, 0.2);
		backdrop-filter: blur(8px);
		color: #f5eee7;
		font-size: clamp(26px, 2.8vw, 38px);
		line-height: 1;
		letter-spacing: -0.04em;
	}

	.specialist-portrait-label {
		position: relative;
		z-index: 1;
		align-self: flex-end;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 28px;
		padding: 6px 10px;
		border-radius: 999px;
		border: 1px solid rgba(237, 230, 218, 0.26);
		background: rgba(0, 0, 0, 0.24);
		backdrop-filter: blur(8px);
		color: #e9ddd0;
		font-size: 11px;
		letter-spacing: 0.16em;
		text-transform: uppercase;
	}

	.specialist-content {
		display: grid;
		gap: 14px;
	}

	.specialist-copy {
		display: grid;
		gap: 6px;
	}

	.specialist-name {
		margin: 0;
		font-size: clamp(20px, 2vw, 26px);
		line-height: 1.08;
		letter-spacing: -0.03em;
		color: #f6f1ea;
	}

	.specialist-role {
		margin: 0;
		font-size: 14px;
		line-height: 1.45;
		color: #c9bcb1;
	}

	.specialist-meta {
		display: grid;
		gap: 12px;
		padding: 14px 0 0;
		border-top: 1px solid rgba(185, 156, 126, 0.24);
	}

	.specialist-meta-item {
		display: grid;
		gap: 5px;
	}

	.specialist-meta-label {
		font-size: 11px;
		line-height: 1;
		letter-spacing: 0.18em;
		text-transform: uppercase;
		color: #b99c7e;
	}

	.specialist-meta-value {
		font-size: 14px;
		line-height: 1.45;
		color: #ece4db;
	}

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

	.specialist-link,
	.specialist-book {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 44px;
		padding: 11px 16px;
		border-radius: 8px;
		text-decoration: none;
		font-size: 14px;
		line-height: 1;
		transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
	}

	.specialist-link {
		border: 1px solid rgba(185, 156, 126, 0.52);
		background: rgba(0, 0, 0, 0.16);
		color: #f6eee5;
	}

	.specialist-book {
		border: 1px solid var(--accent);
		background: var(--accent);
		color: #050505;
	}

	.specialist-link:hover,
	.specialist-book:hover {
		transform: translateY(-1px);
	}

	.specialist-link:hover {
		border-color: rgba(196, 169, 139, 0.92);
		background: rgba(185, 156, 126, 0.18);
		box-shadow: 0 4px 12px rgba(168, 120, 90, 0.15);
	}

	.specialist-book:hover {
		border-color: #95684e;
		background: #95684e;
		box-shadow: 0 4px 16px rgba(168, 120, 90, 0.25);
	}

	.cosmetics {
		position: relative;
		padding: clamp(48px, 7vw, 96px) clamp(16px, 4vw, 48px) clamp(58px, 9vw, 108px);
		border-top: 1px solid rgba(168, 120, 90, 0.24);
		background: radial-gradient(circle at 8% 0%, rgba(237, 230, 218, 0.08), transparent 34%), radial-gradient(circle at 92% 20%, rgba(185, 156, 126, 0.1), transparent 40%), #050505;
		overflow: hidden;
	}

	.cosmetics-inner {
		width: min(var(--content-max), 100%);
		margin: 0 auto;
	}

	.cosmetics-head {
		display: grid;
		gap: 10px;
		margin-bottom: clamp(20px, 2.8vw, 34px);
	}

	.cosmetics-title {
		margin: 0;
		font-size: clamp(30px, 4.2vw, 56px);
		line-height: 0.95;
		letter-spacing: -0.04em;
		color: #f8f3ed;
		text-wrap: balance;
	}

	.cosmetics-lead {
		margin: 0;
		max-width: 72ch;
		font-size: clamp(14px, 1.2vw, 17px);
		line-height: 1.45;
		color: #bbb1a8;
	}

	.cosmetics-layout {
		display: grid;
		gap: 16px;
	}

	.cosmetics-copy-card,
	.cosmetics-logos-shell {
		border-radius: 18px;
		border: 1px solid rgba(185, 156, 126, 0.3);
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.34));
		box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
		backdrop-filter: blur(2px);
	}

	.cosmetics-copy-card {
		display: grid;
		gap: 18px;
		padding: clamp(16px, 2vw, 24px);
	}

	.cosmetics-copy-content {
		display: grid;
		gap: 12px;
	}

	.cosmetics-card-label {
		margin: 0 0 12px;
		font-size: 12px;
		line-height: 1;
		letter-spacing: 0.18em;
		text-transform: uppercase;
		color: #c9ae90;
	}

	.cosmetics-points {
		display: grid;
		gap: 12px;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.cosmetics-storefront {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
		padding: 10px;
		border-radius: 16px;
		overflow: hidden;
		border: 1px solid rgba(185, 156, 126, 0.34);
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.28));
	}

	.cosmetics-storefront img {
		display: block;
		width: 100%;
		max-width: 400px;
		height: auto;
		border-radius: 10px;
		object-fit: contain;
	}

	.cosmetics-points li {
		position: relative;
		padding-left: 18px;
		font-size: 14px;
		line-height: 1.5;
		color: #ece4db;
	}

	.cosmetics-points li::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0.62em;
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: var(--accent);
		box-shadow: 0 0 0 3px rgba(185, 156, 126, 0.12);
	}

	.cosmetics-logos-shell {
		position: relative;
		margin-top: 16px;
		padding: 18px 0;
		overflow: hidden;
	}

	.cosmetics-logos-shell::before,
	.cosmetics-logos-shell::after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		width: 72px;
		z-index: 1;
		pointer-events: none;
	}

	.cosmetics-logos-shell::before {
		left: 0;
		background: linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0));
	}

	.cosmetics-logos-shell::after {
		right: 0;
		background: linear-gradient(270deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0));
	}

	.cosmetics-logos-track {
		display: flex;
		align-items: center;
		gap: 14px;
		width: max-content;
		padding: 6px 18px;
		animation: cosmetics-marquee 30s linear infinite;
	}

	.cosmetics-logos-shell:hover .cosmetics-logos-track {
		animation-play-state: paused;
	}

	.cosmetics-logo {
		flex: 0 0 auto;
		display: flex;
		align-items: center;
		justify-content: center;
		width: clamp(132px, 16vw, 180px);
		height: clamp(72px, 9vw, 94px);
		padding: 16px 18px;
		border-radius: 14px;
		border: 1px solid rgba(185, 156, 126, 0.18);
		background: rgba(255, 255, 255, 0.04);
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
	}

	.cosmetics-logo img {
		display: block;
		max-width: 100%;
		max-height: 100%;
		object-fit: contain;
		filter: brightness(0.95) contrast(1.04);
	}

	.consultation {
		position: relative;
		padding: clamp(48px, 7vw, 96px) clamp(16px, 4vw, 48px) clamp(58px, 9vw, 108px);
		border-top: 1px solid rgba(168, 120, 90, 0.24);
		background: radial-gradient(circle at 12% 0%, rgba(185, 156, 126, 0.14), transparent 34%), radial-gradient(circle at 88% 18%, rgba(237, 230, 218, 0.08), transparent 40%), #040404;
		overflow: hidden;
	}

	.consultation-inner {
		width: min(var(--content-max), 100%);
		margin: 0 auto;
	}

	.consultation-head {
		display: grid;
		gap: 10px;
		margin-bottom: clamp(20px, 2.8vw, 34px);
	}

	.consultation-title {
		margin: 0;
		font-size: clamp(30px, 4.2vw, 56px);
		line-height: 0.95;
		letter-spacing: -0.04em;
		color: #f8f3ed;
		text-wrap: balance;
	}

	.consultation-lead {
		margin: 0;
		max-width: 72ch;
		font-size: clamp(14px, 1.2vw, 17px);
		line-height: 1.45;
		color: #bbb1a8;
	}

	.consultation-grid {
		display: grid;
		gap: 16px;
		align-items: start;
	}

	.consultation-form-card,
	.consultation-info-card {
		border-radius: 18px;
		border: 1px solid rgba(185, 156, 126, 0.3);
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.34));
		box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
		backdrop-filter: blur(2px);
	}

	.consultation-form-card {
		display: grid;
		gap: 18px;
		padding: clamp(16px, 2vw, 24px);
	}

	.consultation-card-head {
		display: grid;
		gap: 8px;
	}

	.consultation-card-title {
		margin: 0;
		font-size: clamp(20px, 2vw, 28px);
		line-height: 1.08;
		letter-spacing: -0.03em;
		color: #f6f1ea;
	}

	.consultation-card-note {
		margin: 0;
		font-size: 14px;
		line-height: 1.5;
		color: #bbb1a8;
	}

	.consultation-form {
		display: grid;
		gap: 14px;
	}

	.consultation-field {
		display: grid;
		gap: 8px;
	}

	.consultation-field--compact {
		gap: 0;
	}

	.consultation-label {
		font-size: 12px;
		line-height: 1;
		letter-spacing: 0.18em;
		text-transform: uppercase;
		color: #c9ae90;
	}

	.consultation-input,
	.consultation-textarea {
		width: 100%;
		border: 1px solid rgba(185, 156, 126, 0.34);
		background: rgba(0, 0, 0, 0.24);
		color: #f6eee6;
		border-radius: 12px;
		padding: 14px 16px;
		font: inherit;
		transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
	}

	.consultation-input {
		min-height: 48px;
	}

	.consultation-textarea {
		min-height: 118px;
		resize: vertical;
	}

	.consultation-input::placeholder,
	.consultation-textarea::placeholder {
		color: #8f857d;
	}

	.consultation-input:hover,
	.consultation-textarea:hover,
	.consultation-option:hover {
		border-color: rgba(196, 169, 139, 0.7);
	}

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

	.consultation-option {
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 14px 16px;
		border-radius: 12px;
		border: 1px solid rgba(185, 156, 126, 0.34);
		background: rgba(255, 255, 255, 0.03);
		cursor: pointer;
		transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
	}

	.consultation-option input {
		accent-color: var(--accent);
		flex: 0 0 auto;
	}

	.consultation-option span {
		color: #f3e9df;
		font-size: 14px;
		line-height: 1.3;
	}

	.consultation-privacy {
		display: flex;
		align-items: flex-start;
		gap: 12px;
		font-size: 14px;
		line-height: 1.45;
		color: #d8cdc3;
		cursor: pointer;
	}

	.consultation-privacy input {
		margin-top: 3px;
		accent-color: var(--accent);
		flex: 0 0 auto;
	}

	.consultation-submit {
		min-height: 48px;
		border: 1px solid var(--accent);
		background: var(--accent);
		color: #050505;
		border-radius: 12px;
		font: inherit;
		font-size: 15px;
		cursor: pointer;
		transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
	}

	.consultation-submit:hover {
		transform: translateY(-1px);
		border-color: #95684e;
		background: #95684e;
		box-shadow: 0 6px 18px rgba(168, 120, 90, 0.2);
	}

	.consultation-info-card {
		display: grid;
		gap: 16px;
		padding: clamp(18px, 2.4vw, 28px);
	}

	.consultation-info-column {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.consultation-info-block {
		padding-bottom: 16px;
		border-bottom: 1px solid rgba(185, 156, 126, 0.18);
	}

	.consultation-info-block:last-of-type {
		padding-bottom: 0;
		border-bottom: 0;
	}

	.consultation-info-label {
		margin: 0 0 8px;
		font-size: 11px;
		line-height: 1;
		letter-spacing: 0.18em;
		text-transform: uppercase;
		color: #c9ae90;
	}

	.consultation-info-value {
		margin: 0;
		font-size: 16px;
		line-height: 1.5;
		color: #f2e8de;
	}

	.consultation-info-value a {
		color: inherit;
		text-decoration: none;
	}

	.consultation-info-value a:hover {
		color: #ffffff;
	}

	.consultation-benefit {
		display: flex;
		gap: 12px;
		
	}

	.consultation-benefit svg {
		flex: 0 0 auto;
		color: var(--accent);
		margin-top: 2px;
	}

	.consultation-benefit-title {
		margin: 0 0 4px;
		font-size: 12px;
		line-height: 1;
		letter-spacing: 0.18em;
		text-transform: uppercase;
		color: #c9ae90;
	}

	.consultation-benefit-text {
		margin: 0;
		font-size: 14px;
		line-height: 1.45;
		color: #e7dbcf;
	}



	.consultation-info-label {
		font-size: clamp(12px, 1vw, 13px);
		letter-spacing: 0.12em;
		text-transform: uppercase;
		color: #8f857d;
		margin: 0 0 8px;
	}

	.consultation-socials-section {
		text-align: center;
		margin-top: 48px;
	}

	.consultation-socials-title {
		font-size: 18px;
		font-weight: 600;
		color: #f2e8de;
		margin-bottom: 8px;
	}

	.consultation-socials-subtitle {
		font-size: 14px;
		color: #c9ae90;
		margin-bottom: 16px;
	}

	.consultation-socials-links {
		display: flex;
		gap: 16px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.consultation-social-link {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		background-color: rgba(185, 156, 126, 0.1);
		border: none;
		border-radius: 50%;
		color: #B99C7E;
		transition: all 0.3s ease;
		flex-shrink: 0;
	}

	.consultation-social-link:hover {
		background-color: rgba(185, 156, 126, 0.2);
		color: #B99C7E;
	}

	.consultation-social-link:focus-visible {
		outline: 2px solid rgba(210, 166, 135, 0.95);
		outline-offset: 2px;
	}

	.consultation-social-link svg {
		width: 20px;
		height: 20px;
		stroke-width: 1.5;
	}

	.site-footer {
		position: relative;
		padding: clamp(28px, 5vw, 56px) clamp(16px, 4vw, 48px);
		border-top: 1px solid rgba(185, 156, 126, 0.24);
		background:
			radial-gradient(circle at 12% 0%, rgba(185, 156, 126, 0.14), transparent 26%),
			radial-gradient(circle at 88% 20%, rgba(168, 120, 90, 0.12), transparent 30%),
			linear-gradient(180deg, #050505 0%, #020202 100%);
	}

	.site-footer-inner {
		width: min(var(--content-max), 100%);
		margin: 0 auto;
		display: grid;
		gap: 28px;
	}

	.site-footer-brand-block {
		display: grid;
		gap: 14px;
		max-width: 52ch;
	}

	.site-footer-logo {
		width: clamp(150px, 14vw, 210px);
		height: auto;
	}

	.site-footer-lead {
		margin: 0;
		font-size: clamp(14px, 1.15vw, 16px);
		line-height: 1.55;
		color: #cfc2b7;
	}

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

	.site-footer-column {
		display: grid;
		gap: 10px;
		align-content: start;
		padding: 18px;
		border-radius: 16px;
		border: 1px solid rgba(185, 156, 126, 0.18);
		background: rgba(255, 255, 255, 0.02);
	}

	.site-footer-heading {
		margin: 0 0 4px;
		font-size: 12px;
		line-height: 1;
		letter-spacing: 0.18em;
		text-transform: uppercase;
		color: #c9ae90;
	}

	.site-footer-column a,
	.site-footer-column span {
		font-size: 14px;
		line-height: 1.5;
		color: #f0e7dc;
		text-decoration: none;
	}

	.site-footer-column a {
		width: fit-content;
		transition: color 0.2s ease, transform 0.2s ease;
	}

	.site-footer-column a:hover {
		color: #ffffff;
		transform: translateX(2px);
	}

	.site-footer-bottom {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 10px 20px;
		padding-top: 18px;
		border-top: 1px solid rgba(185, 156, 126, 0.2);
		font-size: 13px;
		line-height: 1.5;
		color: #a79c92;
	}

	.site-footer-bottom p {
		margin: 0;
	}

	.site-footer-support {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 4px;
		padding-top: 14px;
		border-top: 1px solid rgba(185, 156, 126, 0.16);
		font-size: 12px;
		line-height: 1.5;
		color: #9f958d;
		text-align: center;
	}

	.site-footer-support a {
		color: #c9ae90;
		font-weight: 700;
		text-decoration: none;
		transition: color 0.2s ease, border-color 0.2s ease;
		border-bottom: 1px solid transparent;
	}

	.site-footer-support a:hover {
		color: #f0e7dc;
		border-color: rgba(240, 231, 220, 0.75);
	}

	.legal-page {
		min-height: 100svh;
		padding: clamp(24px, 6vw, 64px) clamp(16px, 4vw, 48px);
		background:
			radial-gradient(circle at top, rgba(185, 156, 126, 0.12), transparent 30%),
			linear-gradient(180deg, #050505 0%, #020202 100%);
	}

	.legal-card {
		width: min(760px, 100%);
		margin: 0 auto;
		padding: clamp(24px, 4vw, 40px);
		border-radius: 20px;
		border: 1px solid rgba(185, 156, 126, 0.2);
		background: rgba(255, 255, 255, 0.03);
		box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
	}

	.legal-card h1 {
		margin: 12px 0 16px;
		font-size: clamp(32px, 4vw, 56px);
		line-height: 0.98;
		letter-spacing: -0.04em;
		color: #f7f2ec;
	}

	.legal-card p {
		margin: 0 0 14px;
		font-size: clamp(15px, 1.15vw, 17px);
		line-height: 1.6;
		color: #d2c6bc;
	}

	.legal-card a {
		color: #f0e7dc;
		text-decoration: none;
		border-bottom: 1px solid rgba(185, 156, 126, 0.45);
		transition: color 0.2s ease, border-color 0.2s ease;
	}

	.legal-card a:hover {
		color: #ffffff;
		border-color: #ffffff;
	}

	@media (min-width: 1024px) {
		.services-accordion {
			grid-template-columns: repeat(2, minmax(0, 1fr));
			gap: 12px;
		}
	}

	@media (min-width: 1120px) {
		.services-accordion {
			grid-template-columns: repeat(3, minmax(0, 1fr));
		}
	}

	@media (min-width: 900px) {
		.specialists-grid {
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}
	}

	@media (min-width: 1240px) {
		.specialists-grid {
			grid-template-columns: repeat(3, minmax(0, 1fr));
		}
	}

	@media (min-width: 960px) {
		.cosmetics-copy-card {
			grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
			align-items: center;
			padding: clamp(20px, 2.2vw, 28px);
		}

		.cosmetics-storefront {
			justify-self: end;
			margin: 0;
		}

		.consultation-grid {
			grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
		}

		.site-footer-grid {
			grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
		}
	}

	@media (prefers-reduced-motion: no-preference) {
		.hero-content > * {
			opacity: 0;
			animation: hero-fade-up 0.7s cubic-bezier(0.2, 0.65, 0.2, 1) forwards;
		}

		.hero-content > .hero-bottom {
			opacity: 1;
			animation: hero-rise-soft 0.52s cubic-bezier(0.2, 0.65, 0.2, 1) both;
			animation-delay: 0s;
		}

		.hero-content > :nth-child(1) {
			animation-delay: 0.08s;
		}

		.hero-content > :nth-child(2) {
			animation-delay: 0.2s;
		}

		.hero-content > :nth-child(3) {
			animation-delay: 0.34s;
		}

		.hero-content > :nth-child(4) {
			animation-delay: 0.48s;
		}

		.hero-content > :nth-child(5) {
			animation-delay: 0.62s;
		}

		.hero-benefits .benefit-item {
			opacity: 0;
			animation: hero-fade-up 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
		}

		.hero-benefits .benefit-item:nth-of-type(1) {
			animation-delay: 0.16s;
		}

		.hero-benefits .benefit-item:nth-of-type(2) {
			animation-delay: 0.28s;
		}

		.hero-benefits .benefit-item:nth-of-type(3) {
			animation-delay: 0.4s;
		}

		.services-head,
		.service-item {
			opacity: 0;
		}

		.consultation-head,
		.consultation-form-card,
		.consultation-info-card {
			opacity: 0;
		}

		.services-head.is-visible {
			animation: hero-fade-up 0.7s cubic-bezier(0.2, 0.65, 0.2, 1) forwards;
			animation-delay: 0.1s;
		}

		.service-item.is-visible {
			animation: hero-fade-up 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
		}

		.services-accordion > .service-item:nth-child(1).is-visible {
			animation-delay: 0.2s;
		}

		.services-accordion > .service-item:nth-child(2).is-visible {
			animation-delay: 0.28s;
		}

		.services-accordion > .service-item:nth-child(3).is-visible {
			animation-delay: 0.36s;
		}

		.services-accordion > .service-item:nth-child(4).is-visible {
			animation-delay: 0.44s;
		}

		.services-accordion > .service-item:nth-child(5).is-visible {
			animation-delay: 0.52s;
		}

		.services-accordion > .service-item:nth-child(6).is-visible {
			animation-delay: 0.6s;
		}

		.services-accordion > .service-item:nth-child(7).is-visible {
			animation-delay: 0.68s;
		}

		.services-accordion > .service-item:nth-child(8).is-visible {
			animation-delay: 0.76s;
		}

		.services-accordion > .service-item:nth-child(9).is-visible {
			animation-delay: 0.84s;
		}

		.services-accordion > .service-item:nth-child(10).is-visible {
			animation-delay: 0.92s;
		}

		.services-accordion > .service-item:nth-child(11).is-visible {
			animation-delay: 1s;
		}

		.services-accordion > .service-item:nth-child(12).is-visible {
			animation-delay: 1.08s;
		}

		.services-accordion > .service-item:nth-child(13).is-visible {
			animation-delay: 1.16s;
		}

		.services-accordion > .service-item:nth-child(14).is-visible {
			animation-delay: 1.24s;
		}

		.services-accordion > .service-item:nth-child(15).is-visible {
			animation-delay: 1.32s;
		}

		.consultation-head.is-visible {
			animation: hero-fade-up 0.7s cubic-bezier(0.2, 0.65, 0.2, 1) forwards;
			animation-delay: 0.1s;
		}

		.consultation-form-card.is-visible {
			animation: hero-fade-up 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
			animation-delay: 0.2s;
		}

		.consultation-info-card.is-visible {
			animation: hero-fade-up 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
			animation-delay: 0.3s;
		}

		.specialists-head,
		.specialist-card {
			opacity: 0;
		}

		.specialists-head.is-visible {
			animation: hero-fade-up 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
			animation-delay: 0.12s;
		}

		.specialist-card.is-visible {
			animation: hero-fade-up 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
		}

		.specialists-grid > :nth-child(1).is-visible {
			animation-delay: 0.18s;
		}

		.specialists-grid > :nth-child(2).is-visible {
			animation-delay: 0.26s;
		}

		.specialists-grid > :nth-child(3).is-visible {
			animation-delay: 0.34s;
		}

		.specialists-grid > :nth-child(4).is-visible {
			animation-delay: 0.42s;
		}

		.specialists-grid > :nth-child(5).is-visible {
			animation-delay: 0.5s;
		}

		.specialists-grid > :nth-child(6).is-visible {
			animation-delay: 0.58s;
		}

		.specialists-grid > :nth-child(7).is-visible {
			animation-delay: 0.66s;
		}

		.specialists-grid > :nth-child(8).is-visible {
			animation-delay: 0.74s;
		}

		.cosmetics-head,
		.cosmetics-copy-card,
		.cosmetics-logos-shell {
			opacity: 0;
		}

		.cosmetics-head.is-visible {
			animation: hero-fade-up 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
			animation-delay: 0.12s;
		}

		.cosmetics-copy-card.is-visible,
		.cosmetics-logos-shell.is-visible {
			animation: hero-fade-up 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
		}

		.cosmetics-layout > :nth-child(1).is-visible {
			animation-delay: 0.2s;
		}

		.cosmetics-layout > :nth-child(2).is-visible {
			animation-delay: 0.28s;
		}
	}

	@media (prefers-reduced-motion: reduce) {
		.cosmetics-logos-track {
			animation: none;
		}
	}

	@media (max-width: 1100px) {
		.hero-content {
			width: min(960px, calc(100% - 36px));
			margin-left: 18px;
			padding-bottom: 160px;
		}

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

		.services-title {
			max-width: none;
		}

		.hero-benefits-track {
			width: min(960px, calc(100% - 36px));
			margin-left: 18px;
		}

		.hero-title {
			max-width: 8.2em;
		}

		.hero-model {
			width: min(76vw, 760px);
			
			right: -6px;
			bottom: 0;
		}

		.cta-button {
			min-width: clamp(228px, 38vw, 314px);
		}

		.benefit-item {
			width: 100%;
			padding: 20px;
		}
	}

	@media (max-width: 768px) {
		.hero-content {
			position: relative;
			z-index: 3;
			display: flex;
			flex-direction: column;
			justify-content: space-between;
			width: 100%;
			min-height: 100svh;
			margin-left: 0;
			padding: 18px 16px 22px;
		}

		.site-footer-grid {
			grid-template-columns: 1fr;
		}

		.site-footer-bottom {
			flex-direction: column;
		}

		.hero-model {
			position: absolute;
			top: 0;
			left: 50%;
			right: auto;
			
			display: block;
			width: min(88vw, 460px);
			height: min(74svh, 620px);
			max-height: min(74svh, 620px);
			margin: 0;
			object-fit: contain;
			object-position: center bottom;
			transform: translate3d(-50%, var(--hero-parallax-y, 0px), 0);
			-webkit-mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
			mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
		}

		.hero-screen::before {
			content: "";
			position: absolute;
			left: 0;
			right: 0;
			bottom: 0;
			height: clamp(78px, 22svh, 180px);
			z-index: 2;
			pointer-events: none;
			background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(4, 4, 4, 0.92) 100%);
			backdrop-filter: blur(10px) saturate(0.9);
			-webkit-backdrop-filter: blur(10px) saturate(0.9);
		}

		.hero-screen::after {
			content: "";
			position: absolute;
			inset: 0;
			z-index: 1;
			background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.22) 44%, rgba(0, 0, 0, 0.8) 100%);
			pointer-events: none;
		}

		.hero-top,
		.license-chip,
		.hero-bottom {
			position: relative;
			z-index: 3;
		}

		.hero-bottom {
			margin-top: auto;
			padding-top: 18px;
		}

		.hero-title {
			font-size: clamp(35px, 10.8vw, 50px);
			max-width: 8.9em;
			text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
		}

		.hero-cta {
			gap: 10px;
			margin-top: 18px;
		}

		.cta-button {
			min-width: 100%;
			font-size: 17px;
			padding: 15px 18px;
		}

		.hero-note {
			font-size: 15px;
			margin-top: 16px;
			color: #d0d0d3;
		}

		.hero-benefits {
			position: relative;
			left: auto;
			right: auto;
			bottom: auto;
			display: block;
			z-index: 3;
			border-top: 1px solid rgba(173, 127, 97, 0.44);
			background: linear-gradient(180deg, rgba(7, 7, 7, 0.6), rgba(5, 5, 5, 0.95));
		}

		.hero-benefits-track {
			display: flex;
			flex-direction: column;
			width: calc(100% - 32px);
			margin: 0 16px;
		}

		.benefit-item {
			min-height: auto;
			padding: 14px 6px;
			gap: 10px;
		}

		.benefit-item p {
			font-size: 14px;
			line-height: 1.3;
		}

		.benefit-divider {
			width: 100%;
			height: 1px;
			margin: 0;
		}

		.hero-content > * {
			max-width: 100%;
		}

		.news-promotions {
			padding: 40px 16px 56px;
		}

		.news-promotions-head {
			flex-direction: column;
			align-items: flex-start;
			margin-bottom: 20px;
		}

		.news-all-button {
			width: 100%;
			justify-content: center;
		}

		.news-all-button-desktop {
			display: none;
		}

		.news-all-button-mobile {
			display: inline-flex;
		}

		.news-grid {
			grid-template-columns: 1fr;
			gap: 14px;
		}

		.news-card-title {
			font-size: 22px;
		}

		.news-card-text {
			font-size: 15px;
		}

		.services {
			padding: 40px 16px 56px;
		}

		.specialists {
			padding: 40px 16px 56px;
		}

		.consultation {
			padding: 40px 16px 56px;
		}

		.services-head {
			margin-bottom: 18px;
		}

		.specialists-head {
			margin-bottom: 18px;
		}

		.services-title {
			font-size: clamp(31px, 10.3vw, 46px);
		}

		.specialists-title {
			font-size: clamp(31px, 10.3vw, 46px);
			max-width: none;
		}

		.specialist-card {
			padding: 12px;
		}

		.specialist-portrait {
			min-height: 214px;
		}

		.specialist-name {
			font-size: 21px;
		}

		.specialist-role,
		.specialist-meta-value,
		.specialist-link,
		.specialist-book {
			font-size: 15px;
		}

		.specialist-actions {
			grid-template-columns: 1fr;
		}

		.specialist-link,
		.specialist-book {
			width: 100%;
		}

		.consultation-head {
			margin-bottom: 18px;
		}

		.consultation-title {
			font-size: clamp(31px, 10.3vw, 46px);
		}

		.consultation-grid {
			grid-template-columns: 1fr;
		}

		.consultation-info-column {
			gap: 16px;
		}

		.consultation-form-card,
		.consultation-info-card {
			padding: 12px;
		}

		.consultation-socials-links {
			gap: 12px;
		}

		.consultation-socials-title {
			font-size: 16px;
		}

		.consultation-socials-subtitle {
			font-size: 13px;
			margin-bottom: 12px;
		}

		.consultation-social-link {
			width: 36px;
			height: 36px;
		}

		.consultation-social-link svg {
			width: 18px;
			height: 18px;
		}

		.consultation-options {
			grid-template-columns: 1fr;
		}

		.consultation-option,
		.consultation-privacy,
		.consultation-card-note,
		.consultation-info-value,
		.consultation-benefit-text {
			font-size: 15px;
		}

		.consultation-submit {
			width: 100%;
		}

		.service-trigger {
			padding: 15px 14px;
		}

		.service-name {
			font-size: 19px;
		}

		.service-panel {
			padding: 0 14px 14px;
		}

		.service-panel-inner {
			gap: 12px;
		}

		.service-description {
			font-size: 15px;
		}

		.service-price {
			font-size: 20px;
		}

		.service-book-button {
			width: 100%;
		}
	}
	/* Blog Post Styles */
	.blog-header .header-container {
		width: min(var(--content-max), 100%);
		margin: 0 auto;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.blog-post-container {
		background: #050505;
		color: #f0ede9;
		padding: 0 clamp(16px, 4vw, 48px) clamp(40px, 8vw, 80px);
	}

	/* Blog Listing Styles */
	.blog-listing-section {
		background: #050505;
		color: #f0ede9;
		padding: 0 clamp(16px, 4vw, 48px) clamp(60px, 8vw, 100px);
		min-height: 100vh;
	}

	.blog-container {
		width: min(var(--content-max), 100%);
		margin: 0 auto;
	}

	.blog-page-header {
		margin-bottom: clamp(40px, 6vw, 64px);
		text-align: center;
	}

	.blog-page-title {
		font-size: clamp(36px, 5vw, 64px);
		line-height: 1;
		color: #f7f4f1;
		margin-bottom: 16px;
		font-weight: 400;
	}

	.blog-page-lead {
		max-width: 600px;
		margin: 0 auto;
		font-size: clamp(16px, 1.2vw, 18px);
		color: #b3b3b8;
		line-height: 1.5;
	}

	.blog-grid {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
		gap: clamp(24px, 3vw, 40px);
		margin-bottom: 64px;
	}

	.blog-card {
		display: flex;
		flex-direction: column;
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.4));
		border: 1px solid rgba(185, 156, 126, 0.2);
		border-radius: 18px;
		overflow: hidden;
		transition: all 0.3s ease;
		text-decoration: none;
	}

	.blog-card:hover {
		transform: translateY(-8px);
		border-color: rgba(185, 156, 126, 0.5);
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
	}

	.blog-card-image {
		position: relative;
		width: 100%;
		aspect-ratio: 16 / 10;
		overflow: hidden;
	}

	.blog-card-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s ease;
	}

	.blog-card:hover .blog-card-image img {
		transform: scale(1.05);
	}

	.blog-card-tag {
		position: absolute;
		top: 16px;
		left: 16px;
		padding: 6px 12px;
		background: rgba(0, 0, 0, 0.7);
		backdrop-filter: blur(8px);
		border: 1px solid rgba(185, 156, 126, 0.4);
		border-radius: 6px;
		color: var(--accent);
		font-size: 12px;
		text-transform: uppercase;
		letter-spacing: 0.05em;
	}

	.blog-card-content {
		padding: 24px;
		display: flex;
		flex-direction: column;
		flex: 1;
	}

	.blog-card-meta {
		display: flex;
		align-items: center;
		gap: 12px;
		font-size: 13px;
		color: #b99c7e;
		margin-bottom: 12px;
		text-transform: uppercase;
		letter-spacing: 0.05em;
	}

	.blog-card-title {
		font-size: 22px;
		line-height: 1.3;
		color: #f7f4f1;
		margin-bottom: 12px;
		transition: color 0.2s ease;
	}

	.blog-card:hover .blog-card-title {
		color: var(--accent);
	}

	.blog-card-description {
		font-size: 15px;
		line-height: 1.5;
		color: #b3b3b8;
		margin-bottom: 20px;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.blog-card-link {
		margin-top: auto;
		display: inline-flex;
		align-items: center;
		gap: 8px;
		color: var(--accent);
		font-size: 14px;
		font-weight: 500;
	}

	.blog-card-link svg {
		transition: transform 0.2s ease;
	}

	.blog-card:hover .blog-card-link svg {
		transform: translateX(4px);
	}

	/* Pagination */
	.pagination {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 8px;
	}

	.pagination-link {
		width: 44px;
		height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		border: 1px solid rgba(185, 156, 126, 0.25);
		color: #e6ddd6;
		text-decoration: none;
		font-size: 16px;
		transition: all 0.2s ease;
	}

	.pagination-link:hover {
		border-color: var(--accent);
		background: rgba(185, 156, 126, 0.1);
	}

	.pagination-link.is-active {
		background: var(--accent);
		border-color: var(--accent);
		color: #000;
	}

	.pagination-arrow {
		width: auto;
		padding: 0 16px;
		border-radius: 30px;
	}

	.blog-article {
		max-width: 800px;
		margin: 0 auto;
	}

	.blog-article-header {
		margin-bottom: clamp(32px, 5vw, 48px);
		text-align: center;
	}

	.blog-meta {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 12px;
		margin-bottom: 16px;
		font-size: 14px;
		color: var(--accent);
		text-transform: uppercase;
		letter-spacing: 0.05em;
	}

	.blog-meta-divider {
		opacity: 0.5;
	}

	.blog-title {
		font-size: clamp(32px, 4.5vw, 56px);
		line-height: 1.1;
		color: #f7f4f1;
		margin-bottom: 24px;
		font-weight: 400;
	}

	.blog-tags {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
	}

	.blog-tag {
		padding: 6px 14px;
		background: rgba(185, 156, 126, 0.1);
		border: 1px solid rgba(185, 156, 126, 0.2);
		border-radius: 100px;
		font-size: 13px;
		color: #b99c7e;
	}

	.blog-featured-image {
		width: 100%;
		aspect-ratio: 16 / 9;
		border-radius: 20px;
		overflow: hidden;
		margin-bottom: clamp(32px, 6vw, 64px);
		border: 1px solid rgba(185, 156, 126, 0.2);
	}

	.blog-featured-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.blog-content {
		font-size: clamp(17px, 1.2vw, 19px);
		line-height: 1.65;
		color: #cfc2b7;
	}

	.blog-content h2 {
		font-size: clamp(24px, 2.5vw, 32px);
		color: #f7f4f1;
		margin: 48px 0 20px;
		font-weight: 400;
	}

	.blog-content h3 {
		font-size: clamp(20px, 2vw, 24px);
		color: #e6ddd6;
		margin: 32px 0 16px;
		font-weight: 400;
	}

	.blog-content p {
		margin-bottom: 24px;
	}

	.blog-content blockquote {
		margin: 40px 0;
		padding: 32px;
		border-left: 3px solid var(--accent);
		background: rgba(185, 156, 126, 0.05);
		font-style: italic;
		font-size: clamp(18px, 1.5vw, 22px);
		color: #f0ede9;
		border-radius: 0 16px 16px 0;
	}

	.blog-content ul, .blog-content ol {
		margin-bottom: 24px;
		padding-left: 20px;
	}

	.blog-content li {
		margin-bottom: 12px;
	}

	.blog-article-footer {
		margin-top: 64px;
		padding-top: 32px;
		border-top: 1px solid rgba(185, 156, 126, 0.15);
	}

	.blog-share {
		display: flex;
		align-items: center;
		gap: 16px;
		color: #b99c7e;
		font-size: 15px;
	}

	.blog-share-links {
		display: flex;
		gap: 12px;
	}

	.share-link {
		width: 36px;
		height: 36px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: 1px solid rgba(185, 156, 126, 0.3);
		border-radius: 50%;
		color: #f0e7dc;
		text-decoration: none;
		font-size: 12px;
		transition: all 0.2s ease;
	}

	.share-link:hover {
		background: var(--accent);
		border-color: var(--accent);
		color: #000;
	}

	@media (max-width: 768px) {
		.blog-header .brand-logo {
			width: 140px;
		}
		
		.back-link span {
			display: none;
		}
		
		.back-link {
			padding: 8px;
		}
	}

	/* Form validation states */
	.consultation-input.is-error,
	.consultation-textarea.is-error {
		border-color: #d64545 !important;
		background-color: rgba(214, 69, 69, 0.08);
		animation: shake 0.3s ease-in-out;
	}

	@keyframes shake {
		0%, 100% { transform: translateX(0); }
		25% { transform: translateX(-4px); }
		75% { transform: translateX(4px); }
	}

	/* Thank You Page Styles */
	.thank-you-page {
		min-height: 100vh;
		background: radial-gradient(circle at 10% 10%, rgba(168, 120, 90, 0.12), transparent 50%), 
		            radial-gradient(circle at 90% 90%, rgba(168, 120, 90, 0.08), transparent 50%),
		            #050505;
		display: flex;
		flex-direction: column;
	}

	.thank-you-header {
		padding: clamp(24px, 3vw, 36px) clamp(16px, 4vw, 48px);
		max-width: var(--content-max);
		margin: 0 auto;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.thank-you-content {
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: clamp(40px, 8vw, 80px) clamp(16px, 4vw, 48px);
	}

	.thank-you-card {
		max-width: 680px;
		width: 100%;
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.4));
		border: 1px solid rgba(168, 120, 90, 0.25);
		border-radius: 28px;
		padding: clamp(32px, 6vw, 64px);
		text-align: center;
		backdrop-filter: blur(10px);
		animation: hero-fade-up 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
	}

	.thank-you-card .success-icon {
		width: 88px;
		height: 88px;
		background: rgba(185, 156, 126, 0.12);
		border: 1px solid rgba(185, 156, 126, 0.4);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 32px;
		color: var(--accent);
	}

	.thank-you-card .success-icon svg {
		width: 44px;
		height: 44px;
	}

	.thank-you-title {
		font-size: clamp(32px, 4.5vw, 52px);
		color: #f7f4f1;
		margin: 0 0 16px;
		font-weight: 400;
		line-height: 1.1;
	}

	.thank-you-message {
		font-size: clamp(16px, 1.4vw, 20px);
		color: #b3b3b8;
		line-height: 1.6;
		margin: 0 0 48px;
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}

	.thank-you-info-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		margin-bottom: 48px;
		padding: 32px;
		background: rgba(168, 120, 90, 0.06);
		border-radius: 20px;
		border: 1px solid rgba(168, 120, 90, 0.18);
		text-align: left;
	}

	.thank-you-info-item {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.info-item-label {
		font-size: 13px;
		text-transform: uppercase;
		letter-spacing: 0.08em;
		color: var(--accent);
		opacity: 0.9;
	}

	.info-item-value {
		font-size: 17px;
		color: #e6ddd6;
		line-height: 1.5;
	}

	.thank-you-socials {
		padding-top: 24px;
		border-top: 1px solid rgba(168, 120, 90, 0.15);
	}

	.thank-you-socials-title {
		font-size: 18px;
		color: #f0ede9;
		margin-bottom: 24px;
		font-weight: 400;
	}

	.thank-you-socials-grid {
		display: flex;
		justify-content: center;
		gap: 16px;
		flex-wrap: wrap;
	}

	.thank-you-cta {
		margin-top: 48px;
	}

	.thank-you-btn {
		display: inline-flex;
		align-items: center;
		gap: 12px;
		padding: 16px 32px;
		background: var(--accent);
		color: #000;
		text-decoration: none;
		border-radius: 12px;
		font-weight: 500;
		font-size: 16px;
		transition: transform 0.2s ease, background-color 0.2s ease;
	}

	.thank-you-btn:hover {
		transform: translateY(-2px);
		background: #cbb299;
	}

	/* Booking Page Styles */
	.booking-page {
		min-height: 100vh;
		background: radial-gradient(circle at 10% 10%, rgba(168, 120, 90, 0.12), transparent 50%),
		            radial-gradient(circle at 90% 90%, rgba(168, 120, 90, 0.08), transparent 50%),
		            #050505;
		display: flex;
		flex-direction: column;
	}

	.booking-header {
		padding: clamp(24px, 3vw, 36px) clamp(16px, 4vw, 48px);
		max-width: var(--content-max);
		margin: 0 auto;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
	}

	.booking-main {
		flex: 1;
		padding: clamp(28px, 6vw, 72px) clamp(16px, 4vw, 48px) clamp(56px, 8vw, 92px);
	}

	.booking-shell {
		max-width: 1080px;
		width: 100%;
		margin: 0 auto;
		padding: clamp(32px, 6vw, 64px);
		border-radius: 20px;
		border: 1px solid rgba(168, 120, 90, 0.25);
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.4));
		backdrop-filter: blur(10px);
		box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
	}

	.booking-kicker {
		margin: 0 0 12px;
		font-size: 13px;
		letter-spacing: 0.16em;
		text-transform: uppercase;
		color: var(--accent);
	}

	.booking-title {
		margin: 0 0 16px;
		font-size: clamp(32px, 4.5vw, 52px);
		line-height: 1.05;
		letter-spacing: -0.03em;
		color: #f7f4f1;
		font-weight: 400;
	}

	.booking-message {
		margin: 0 0 32px;
		max-width: 680px;
		font-size: clamp(16px, 1.4vw, 20px);
		line-height: 1.6;
		color: #b3b3b8;
	}

	.booking-form {
		display: flex;
		flex-direction: column;
		gap: 28px;
	}

	.booking-form-grid {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 18px;
		width: 100%;
	}

	.booking-panel {
		min-width: 0;
		padding: clamp(20px, 3vw, 28px);
		border: 1px solid rgba(168, 120, 90, 0.24);
		border-radius: 12px;
		background: rgba(7, 7, 7, 0.64);
	}

	.booking-panel-wide {
		grid-column: 1 / -1;
	}

	.booking-panel-header {
		display: flex;
		align-items: center;
		gap: 12px;
		margin-bottom: 18px;
	}

	.booking-step {
		width: 34px;
		height: 34px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		border: 1px solid rgba(168, 120, 90, 0.55);
		color: var(--accent);
		font-size: 13px;
		font-weight: 700;
		flex: 0 0 auto;
	}

	.booking-panel-title {
		margin: 0;
		font-size: clamp(20px, 2.2vw, 28px);
		line-height: 1.2;
		color: #f0ede9;
	}

	.booking-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;
	}

	.booking-search-field {
		display: block;
		margin: -4px 0 14px;
	}

	.booking-search-field input {
		width: 100%;
		min-height: 44px;
		border: 1px solid rgba(168, 120, 90, 0.28);
		border-radius: 10px;
		background: rgba(0, 0, 0, 0.42);
		color: #f7f4f1;
		font: inherit;
		font-size: 15px;
		padding: 11px 13px;
		outline: none;
		transition: border-color 0.2s ease, background-color 0.2s ease;
	}

	.booking-search-field input::placeholder {
		color: rgba(179, 179, 184, 0.72);
	}

	.booking-search-field input:focus {
		border-color: rgba(168, 120, 90, 0.82);
		background: rgba(0, 0, 0, 0.58);
	}

	.service-choice-grid,
	.specialist-choice-grid {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
		margin: 0;
		padding: 0;
		border: 0;
	}

	.service-choice-grid {
		max-height: 340px;
		overflow-y: auto;
		padding-right: 4px;
	}

	.specialist-choice-grid {
		max-height: 260px;
		overflow-y: auto;
		padding-right: 4px;
	}

	.specialist-choice,
	.time-choice {
		position: relative;
		display: block;
		cursor: pointer;
	}

	.specialist-choice input,
	.time-choice input {
		position: absolute;
		opacity: 0;
		pointer-events: none;
	}

	.specialist-choice-content {
		min-height: 92px;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		gap: 8px;
		padding: 14px;
		border: 1px solid rgba(168, 120, 90, 0.25);
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.025);
		transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
	}

	.specialist-choice-name {
		font-size: 15px;
		line-height: 1.28;
		color: #f7f4f1;
	}

	.specialist-choice-role {
		font-size: 12px;
		line-height: 1.35;
		color: #b3b3b8;
	}

	.service-choice .specialist-choice-content {
		min-height: 64px;
		justify-content: center;
		padding: 12px 13px;
	}

	.service-choice .specialist-choice-name {
		display: -webkit-box;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		font-size: 14px;
		line-height: 1.28;
	}

	.service-choice .specialist-choice-role {
		display: none;
	}

	.specialist-choice:hover .specialist-choice-content,
	.time-choice:hover span {
		border-color: rgba(168, 120, 90, 0.58);
		transform: translateY(-2px);
	}

	.specialist-choice input:focus-visible + .specialist-choice-content,
	.time-choice input:focus-visible + span {
		outline: 2px solid rgba(168, 120, 90, 0.82);
		outline-offset: 3px;
	}

	.specialist-choice input:checked + .specialist-choice-content,
	.time-choice input:checked + span {
		border-color: var(--accent);
		background: rgba(168, 120, 90, 0.16);
		box-shadow: inset 0 0 0 1px rgba(168, 120, 90, 0.18);
	}

	.booking-field {
		display: flex;
		flex-direction: column;
		gap: 9px;
		min-width: 0;
	}

	.booking-field span {
		font-size: 14px;
		line-height: 1.35;
		color: #d8c8bb;
	}

	.booking-field input,
	.booking-field textarea {
		width: 100%;
		min-height: 50px;
		border: 1px solid rgba(168, 120, 90, 0.28);
		border-radius: 10px;
		background: rgba(0, 0, 0, 0.42);
		color: #f7f4f1;
		font: inherit;
		font-size: 16px;
		padding: 13px 14px;
		outline: none;
		transition: border-color 0.2s ease, background-color 0.2s ease;
	}

	.booking-field textarea {
		resize: vertical;
		min-height: 96px;
	}

	.booking-field input::placeholder,
	.booking-field textarea::placeholder {
		color: rgba(179, 179, 184, 0.72);
	}

	.booking-field input:focus,
	.booking-field textarea:focus {
		border-color: rgba(168, 120, 90, 0.82);
		background: rgba(0, 0, 0, 0.58);
	}

	.booking-field input.is-error,
	.booking-field textarea.is-error {
		border-color: #d64545;
		background: rgba(214, 69, 69, 0.08);
	}

	.booking-calendar {
		display: flex;
		flex-direction: column;
		gap: 14px;
	}

	.booking-calendar-head {
		display: grid;
		grid-template-columns: 38px minmax(0, 1fr) 38px;
		align-items: center;
		gap: 10px;
	}

	.booking-calendar-month {
		margin: 0;
		text-align: center;
		color: #f7f4f1;
		font-size: 17px;
		line-height: 1.3;
	}

	.booking-calendar-nav {
		width: 38px;
		height: 38px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border: 1px solid rgba(168, 120, 90, 0.26);
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.025);
		color: #d8c8bb;
		cursor: pointer;
		transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
	}

	.booking-calendar-nav:hover,
	.booking-calendar-nav:focus-visible {
		border-color: rgba(168, 120, 90, 0.68);
		background: rgba(168, 120, 90, 0.12);
		color: #f7f4f1;
		outline: none;
	}

	.booking-calendar-nav:disabled {
		cursor: not-allowed;
		opacity: 0.34;
	}

	.booking-calendar-nav:disabled:hover {
		border-color: rgba(168, 120, 90, 0.26);
		background: rgba(255, 255, 255, 0.025);
		color: #d8c8bb;
	}

	.booking-calendar-weekdays,
	.booking-calendar-grid {
		display: grid;
		grid-template-columns: repeat(7, minmax(0, 1fr));
		gap: 7px;
	}

	.booking-calendar-weekdays span {
		min-height: 22px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #9f9fa4;
		font-size: 12px;
		line-height: 1;
	}

	.booking-calendar-grid {
		margin: 0;
		padding: 0;
		border: 0;
	}

	.booking-calendar-spacer {
		min-height: 42px;
	}

	.booking-calendar-day {
		position: relative;
		display: block;
		cursor: pointer;
	}

	.booking-calendar-day input {
		position: absolute;
		opacity: 0;
		pointer-events: none;
	}

	.booking-calendar-day span {
		position: relative;
		min-height: 42px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: 1px solid rgba(168, 120, 90, 0.25);
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.025);
		color: #f0ede9;
		font-size: 15px;
		line-height: 1;
		transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
	}

	.booking-calendar-day:not(.is-disabled):hover span {
		border-color: rgba(168, 120, 90, 0.58);
		transform: translateY(-2px);
	}

	.booking-calendar-day input:focus-visible + span {
		outline: 2px solid rgba(168, 120, 90, 0.82);
		outline-offset: 3px;
	}

	.booking-calendar-day input:checked + span {
		border-color: var(--accent);
		background: rgba(168, 120, 90, 0.18);
		color: #ffffff;
		box-shadow: inset 0 0 0 1px rgba(168, 120, 90, 0.18);
	}

	.booking-calendar-day.is-checking span {
		color: rgba(240, 237, 233, 0.58);
		background: rgba(255, 255, 255, 0.018);
		border-color: rgba(168, 120, 90, 0.16);
	}

	.booking-calendar-day.is-available span {
		border-color: rgba(120, 172, 132, 0.48);
		background: rgba(120, 172, 132, 0.1);
	}

	.booking-calendar-day.is-available span::after {
		content: "";
		position: absolute;
		right: 8px;
		bottom: 7px;
		width: 5px;
		height: 5px;
		border-radius: 999px;
		background: #78ac84;
		box-shadow: 0 0 0 3px rgba(120, 172, 132, 0.13);
	}

	.booking-calendar-day.is-unavailable span {
		color: rgba(179, 179, 184, 0.32);
		background: rgba(255, 255, 255, 0.01);
		border-color: rgba(168, 120, 90, 0.1);
	}

	.booking-calendar-day.is-disabled {
		cursor: not-allowed;
	}

	.booking-calendar-day.is-disabled span {
		color: rgba(179, 179, 184, 0.38);
		background: rgba(255, 255, 255, 0.012);
		border-color: rgba(168, 120, 90, 0.12);
	}

	.time-choice-grid {
		display: grid;
		grid-template-columns: repeat(3, minmax(72px, 1fr));
		gap: 10px;
		margin: 0;
		padding: 0;
		border: 0;
	}

	.time-choice span {
		min-height: 48px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: 1px solid rgba(168, 120, 90, 0.28);
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.025);
		color: #f0ede9;
		font-size: 16px;
		transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
	}

	.booking-empty-slots {
		grid-column: 1 / -1;
		margin: 0;
		min-height: 48px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: 1px dashed rgba(168, 120, 90, 0.28);
		border-radius: 10px;
		color: #b3b3b8;
		font-size: 14px;
		text-align: center;
		padding: 10px 12px;
	}

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

	.booking-field-full {
		grid-column: 1 / -1;
	}

	.booking-actions {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 18px;
		width: 100%;
	}

	.booking-consent {
		margin: 0;
		max-width: 440px;
		color: #9f9fa4;
		font-size: 13px;
		line-height: 1.5;
	}

	.booking-submit {
		min-height: 52px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border: 1px solid var(--accent);
		border-radius: 10px;
		background: var(--accent);
		color: #050505;
		font: inherit;
		font-size: 16px;
		font-weight: 700;
		padding: 14px 24px;
		cursor: pointer;
		transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
	}

	.booking-submit:hover {
		transform: translateY(-2px);
		background: #c2a184;
		border-color: #c2a184;
	}

	.booking-submit:disabled,
	.booking-form.is-loading .booking-submit {
		cursor: wait;
		opacity: 0.68;
		transform: none;
	}

	.booking-form-status {
		margin: -8px 0 0;
		min-height: 22px;
		color: #b3b3b8;
		font-size: 14px;
		line-height: 1.5;
	}

	.booking-form-status.is-error {
		color: #e07a7a;
	}

	.booking-form-status.is-success {
		color: #c2a184;
	}

	/* Price Page Styles */
	.price-shell {
		max-width: 1120px;
	}

	.price-hero {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 220px;
		gap: clamp(22px, 4vw, 46px);
		align-items: end;
		margin-bottom: 28px;
	}

	.price-summary {
		padding: 22px;
		border: 1px solid rgba(168, 120, 90, 0.24);
		border-radius: 12px;
		background: rgba(7, 7, 7, 0.64);
	}

	.price-summary-label,
	.price-summary-meta,
	.price-item-category,
	.price-item-meta,
	.price-status {
		margin: 0;
		color: #9f9fa4;
		font-size: 13px;
		line-height: 1.45;
	}

	.price-summary-value {
		margin: 8px 0 6px;
		color: var(--accent);
		font-size: clamp(42px, 6vw, 64px);
		line-height: 0.95;
		font-weight: 700;
	}

	.price-controls {
		margin-bottom: 16px;
	}

	.price-search-field {
		margin: 0 0 14px;
	}

	.price-categories {
		display: flex;
		flex-wrap: wrap;
		gap: 9px;
	}

	.price-category {
		min-height: 38px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border: 1px solid rgba(168, 120, 90, 0.28);
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.025);
		color: #d8c8bb;
		font: inherit;
		font-size: 14px;
		padding: 8px 14px;
		cursor: pointer;
		transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
	}

	.price-category:hover,
	.price-category:focus-visible,
	.price-category[aria-pressed="true"] {
		border-color: var(--accent);
		background: rgba(168, 120, 90, 0.16);
		color: #f7f4f1;
		outline: none;
	}

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

	.price-status {
		min-height: 20px;
		margin: 0 0 14px;
	}

	.price-status.is-error {
		color: #e07a7a;
	}

	.price-list {
		display: grid;
		gap: 12px;
	}

	.price-item {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
		gap: 18px;
		align-items: center;
		padding: clamp(18px, 2.4vw, 24px);
		border: 1px solid rgba(168, 120, 90, 0.24);
		border-radius: 12px;
		background: rgba(7, 7, 7, 0.64);
		transition: border-color 0.2s ease, transform 0.2s ease;
	}

	.price-item:hover {
		border-color: rgba(168, 120, 90, 0.54);
		transform: translateY(-2px);
	}

	.price-item-content {
		min-width: 0;
	}

	.price-item-category {
		margin-bottom: 7px;
		color: #d8c8bb;
	}

	.price-item-title {
		margin: 0 0 8px;
		color: #f7f4f1;
		font-size: clamp(18px, 2vw, 24px);
		line-height: 1.2;
		font-weight: 400;
	}

	.price-item-actions {
		display: grid;
		gap: 12px;
		justify-items: end;
	}

	.price-item-value {
		margin: 0;
		color: var(--accent);
		font-size: clamp(20px, 2.3vw, 28px);
		line-height: 1.15;
		font-weight: 700;
		text-align: right;
	}

	.price-book-link {
		min-height: 44px;
		padding: 11px 18px;
		text-decoration: none;
	}

	.price-empty {
		min-height: 74px;
	}

	@media (max-width: 640px) {
		.thank-you-info-grid {
			grid-template-columns: 1fr;
			padding: 24px;
		}
		
		.thank-you-card {
			padding: 40px 24px;
		}

		.booking-header {
			align-items: flex-start;
		}

		.booking-header .brand-logo {
			max-width: 154px;
		}

		.booking-shell {
			padding: 28px 18px;
			border-radius: 16px;
		}

		.booking-form-grid,
		.service-choice-grid,
		.specialist-choice-grid,
		.booking-contact-grid {
			grid-template-columns: 1fr;
		}

		.booking-actions {
			align-items: stretch;
			flex-direction: column;
		}

		.booking-submit {
			width: 100%;
		}
	}

	@media (max-width: 700px) {
		.booking-page {
			background:
				radial-gradient(circle at 20% 0%, rgba(168, 120, 90, 0.14), transparent 42%),
				#050505;
		}

		.booking-header {
			position: sticky;
			top: 0;
			z-index: 20;
			align-items: center;
			padding: 12px 14px;
			background: rgba(5, 5, 5, 0.88);
			backdrop-filter: blur(12px);
			border-bottom: 1px solid rgba(168, 120, 90, 0.18);
		}

		.booking-header .brand-logo {
			width: 118px;
			max-width: 42vw;
		}

		.booking-header .back-link {
			min-height: 38px;
			padding: 8px 10px;
			font-size: 0;
			border-radius: 999px;
		}

		.booking-header .back-link svg {
			width: 19px;
			height: 19px;
		}

		.booking-main {
			padding: 18px 10px 92px;
		}

		.booking-shell {
			padding: 0;
			border: 0;
			border-radius: 0;
			background: transparent;
			box-shadow: none;
			backdrop-filter: none;
		}

		.booking-kicker {
			margin: 0 6px 8px;
			font-size: 11px;
			letter-spacing: 0.14em;
		}

		.booking-title {
			margin: 0 6px 10px;
			font-size: clamp(27px, 8.4vw, 34px);
			line-height: 1.08;
			letter-spacing: -0.02em;
		}

		.booking-message {
			margin: 0 6px 18px;
			font-size: 14px;
			line-height: 1.5;
			color: #adadb2;
		}

		.booking-form {
			gap: 16px;
		}

		.booking-form-grid {
			grid-template-columns: 1fr;
			gap: 12px;
		}

		.booking-panel {
			padding: 15px;
			border-radius: 12px;
			background: rgba(10, 10, 10, 0.82);
		}

		.booking-panel-header {
			gap: 10px;
			margin-bottom: 12px;
		}

		.booking-step {
			width: 28px;
			height: 28px;
			font-size: 11px;
		}

		.booking-panel-title {
			font-size: 19px;
		}

		.booking-search-field {
			margin: 0 0 10px;
		}

		.booking-search-field input,
		.booking-field input,
		.booking-field textarea {
			min-height: 46px;
			border-radius: 9px;
			font-size: 16px;
			padding: 11px 12px;
		}

		.service-choice-grid,
		.specialist-choice-grid {
			grid-template-columns: 1fr;
			gap: 8px;
			padding-right: 2px;
		}

		.service-choice-grid {
			max-height: 260px;
		}

		.specialist-choice-grid {
			max-height: 220px;
		}

		.service-choice .specialist-choice-content {
			min-height: 50px;
			padding: 10px 11px;
		}

		.specialist-choice-content {
			min-height: 68px;
			gap: 5px;
			padding: 11px 12px;
			border-radius: 9px;
		}

		.specialist-choice-name {
			font-size: 14px;
			line-height: 1.25;
		}

		.specialist-choice-role {
			font-size: 11px;
		}

		.service-choice .specialist-choice-name {
			font-size: 13px;
		}

		.booking-calendar {
			gap: 10px;
		}

		.booking-calendar-head {
			grid-template-columns: 34px minmax(0, 1fr) 34px;
			gap: 8px;
		}

		.booking-calendar-nav {
			width: 34px;
			height: 34px;
			border-radius: 9px;
		}

		.booking-calendar-month {
			font-size: 15px;
		}

		.booking-calendar-weekdays,
		.booking-calendar-grid {
			gap: 5px;
		}

		.booking-calendar-weekdays span {
			min-height: 18px;
			font-size: 10px;
		}

		.booking-calendar-spacer,
		.booking-calendar-day span {
			min-height: 37px;
		}

		.booking-calendar-day span {
			border-radius: 8px;
			font-size: 13px;
		}

		.time-choice-grid {
			grid-template-columns: repeat(2, minmax(0, 1fr));
			gap: 8px;
		}

		.time-choice span {
			min-height: 42px;
			border-radius: 9px;
			font-size: 14px;
		}

		.booking-contact-grid {
			grid-template-columns: 1fr;
			gap: 12px;
		}

		.booking-field {
			gap: 7px;
		}

		.booking-field span {
			font-size: 12px;
		}

		.booking-field textarea {
			min-height: 84px;
		}

		.booking-empty-slots {
			min-height: 44px;
			font-size: 12px;
			padding: 9px 10px;
		}

		.booking-actions {
			position: fixed;
			left: 0;
			right: 0;
			bottom: 0;
			z-index: 30;
			align-items: stretch;
			flex-direction: column;
			gap: 8px;
			padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
			background: rgba(5, 5, 5, 0.92);
			border-top: 1px solid rgba(168, 120, 90, 0.22);
			backdrop-filter: blur(14px);
		}

		.booking-consent {
			max-width: none;
			font-size: 10px;
			line-height: 1.35;
			text-align: center;
		}

		.booking-submit {
			width: 100%;
			min-height: 48px;
			border-radius: 10px;
			font-size: 15px;
			padding: 12px 16px;
		}

		.booking-form-status {
			margin: 0 6px;
			font-size: 12px;
		}

		.price-page .booking-main {
			padding-bottom: 44px;
		}

		.price-page .booking-shell {
			padding: 0 4px;
		}

		.price-hero {
			grid-template-columns: 1fr;
			gap: 12px;
			margin-bottom: 16px;
		}

		.price-summary,
		.price-controls,
		.price-item {
			background: rgba(10, 10, 10, 0.82);
		}

		.price-summary {
			padding: 15px;
		}

		.price-summary-value {
			font-size: 40px;
		}

		.price-controls {
			padding: 14px;
			margin-bottom: 12px;
		}

		.price-categories {
			flex-wrap: nowrap;
			overflow-x: auto;
			padding-bottom: 2px;
		}

		.price-category {
			flex: 0 0 auto;
			min-height: 35px;
			font-size: 13px;
			padding: 7px 12px;
		}

		.price-status {
			margin: 0 6px 12px;
			font-size: 12px;
		}

		.price-list {
			gap: 10px;
		}

		.price-item {
			grid-template-columns: 1fr;
			gap: 14px;
			padding: 15px;
		}

		.price-item-actions {
			grid-template-columns: 1fr;
			justify-items: stretch;
		}

		.price-item-value {
			text-align: left;
			font-size: 22px;
		}

		.price-book-link {
			width: 100%;
		}
	}

	@media (max-width: 380px) {
		.booking-main {
			padding-left: 8px;
			padding-right: 8px;
		}

		.booking-panel {
			padding: 12px;
		}

		.booking-title {
			font-size: 26px;
		}

		.booking-calendar-weekdays,
		.booking-calendar-grid {
			gap: 4px;
		}

		.booking-calendar-spacer,
		.booking-calendar-day span {
			min-height: 34px;
		}
	}
