:root {
	--main-bg: #151410;
	--accent: #ebd3c0;
	--text-light: #f9f4f0;
	--text-highlight: #ebd3c0;
	--border-dark: #954c20;
	--font-title: "Playfair Display", serif;
	--font-body: "Inter", sans-serif;
	--font-ui: "Poppins", sans-serif;
	--email-color: #f4e0d3;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 87px;
}

* {
	box-sizing: border-box;
	font-smoothing: antialiased;
}

body {
	background-color: var(--main-bg);
	color: var(--text-light);
	font-family: var(--font-body);
	line-height: 1.6;
	padding-bottom: 60px;
	overflow-x: clip;

	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: inherit;
}
.paragraph,
.about-paragraph,
.method-list li,
p {
	font-family: var(--font-body);
	font-weight: 400;
}

/* === SECTION HEADINGS === */
.section-heading {
	font-family: var(--font-title); /* Playfair Display */
	font-weight: 600;
	font-size: 32px;
	line-height: 1.2;
	letter-spacing: 0.3px;
	text-align: center;
	color: var(--heading-dark); /* dark, not pure black */
	margin-bottom: 32px;
}

.section-subheading {
	font-family: "IBM Plex Sans", sans-serif;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.3px;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 40px;
}

/* === LIGHT BACKGROUND COLOR === */
.section-heading.light {
	color: #151410;
}
.section-subheading.light {
	color: #3b2f2f;
}

/* === DARK BACKGROUND COLOR === */
.section-heading.dark {
	color: #fff;
}
.section-subheading.dark {
	color: #f2f2f2;
}

/* =====MARK:  NAVIGATION BAR ===== */

.navbar {
	padding: 0 40px;
	border-bottom: 2px solid var(--accent);
	background-color: var(--main-bg);
}

.navbar {
	position: sticky;
	top: 0;
	z-index: 999;
}

.navbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 87px;
}

.logo {
	height: 52px;
	object-fit: contain;
}

/* Desktop menu */
.menu-container {
	border: 2px solid var(--accent);
	border-radius: 8px;
	padding: 4px 36px;
	display: flex;
	gap: 24px;
}

.menu-container a {
	font-family: var(--font-ui);
	font-size: 16px;
	font-weight: 500;
	position: relative;
}

.menu-container a:hover {
	color: var(--accent);
	transition: 0.3s ease;
}

/* Social icons (desktop) */
.social-icons {
	display: flex;
	align-items: center;
	gap: 8px;
}

.social-icons img {
	width: 28px;
	height: 28px;
}
.social-icons img:hover {
	transform: scale(1.1);
	filter: brightness(1.2);
	transition: all 0.3s ease;
	cursor: pointer;
}

/* Hamburger (mobile only) */
.burger {
	display: none;
	width: 28px;
	height: 28px;
	cursor: pointer;
}

/* ===== MARK: HERO SECTION (unchanged) ===== */

.hero-section {
	position: relative;
	padding: 27px 40px 60px;
	position: relative;
}

.hero-bg img {
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	opacity: 0.05;
	pointer-events: none;
	z-index: 0;
}

/* === HERO LAYOUT CONTAINER (Must be relative for positioning child images) === */
.hero-layout {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;

	max-width: 1200px; /* sets a clean central column */
	margin: 0 auto; /* centers the layout */
	padding: 0 20px; /* optional: breathing room on sides */
}

.hero-headline {
	font-family: var(--font-title);
	font-size: 64px;
	line-height: 1.3;
	text-align: center;
	font-weight: 400;
	max-width: 700px; /* slightly narrower */
	margin: 0 auto;
}

.no-wrap {
	white-space: nowrap;
}

/* === MARK: LEFT IMAGE +RIGHT === */

.left-image,
.right-image {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 0;
	pointer-events: none;
	opacity: 1;
	max-width: 100vw;
	overflow: hidden;
}

.left-image {
	left: 0;
}

.right-image {
	right: 0;
}

.left-image img,
.right-image img {
	display: block;
	max-height: 530px;
	width: auto;
	object-fit: contain;
}

.highlight {
	color: #ebd3c0;
	font-weight: 500;
}
.hero-text {
	width: 100%;
	margin: 0 auto;
}

.hero-headline {
	font-family: var(--font-title);
	font-size: 64px;
	line-height: 1.1;
	text-align: center;
	font-weight: 400;
}
.hero-headline .dash {
	font-size: inherit;
	padding: 0 6px;
}

/* Typing Animation */
.typing-text-container {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 24px;
	margin-bottom: 24px;
}

#typing {
	font-family: var(--font-title);
	font-size: 18px;
	letter-spacing: 1px;
	white-space: nowrap;
	position: relative;
}

.description {
	font-size: 20px;
	font-weight: 200;
	margin: 24px auto 10px auto;
	text-align: center;
	max-width: 900px;
}

.secondary-description {
	font-size: 20px;
	font-weight: 200;
	line-height: 1.6;
	margin: 0 auto;
	text-align: center;
	max-width: 1014px;
}

p {
	font-size: 20px;
	font-weight: 200;
	text-align: center;
}

.method-link {
	text-decoration: underline;
	color: var(--text-light);
	font-family: var(--font-ui);
	font-style: italic;
	font-weight: 200;
	transition: all 0.3s ease;
}

.method-link:hover {
	color: var(--accent);
	cursor: pointer;
}

.hero-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	margin: 32px 0 20px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-ui);
	font-size: 16px;
	padding: 12px 24px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn.primary {
	background-color: var(--accent);
	color: #3b2f2f;
	width: 368px;
	border: 4px solid var(--border-dark);
}

.btn.primary img {
	height: 20px;
	margin-left: 12px;
}

.btn.secondary {
	background: transparent;
	color: white;
	border: 3px solid white;
	width: 368px;
	text-align: center;
}

.btn.primary:hover {
	background-color: #f9e4d4;
	color: #3b2f2f;
	border-color: #e1b89f;
	transform: scale(1.02);
	transition: all 0.3s ease;
	cursor: pointer;
}

.btn.secondary {
	border: 3px solid white;
	background: transparent;
	color: white;
	transition: background-color 0.3s ease, color 0.3s ease,
		border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn.secondary:hover {
	background-color: var(--accent);
	color: var(--main-bg);
	border-color: var(--accent);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transform: none;
	cursor: pointer;
}

.hero-email {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	margin-top: 56px;
	text-align: center;
}

.email-icon {
	width: 48px;
	height: 48px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.email-icon:hover {
	filter: brightness(1.3);
	transform: scale(1.05);
}

.email-text {
	font-size: 20px;
	color: #f4e0d3;
	text-decoration: none;
	transition: all 0.3s ease;
}

.email-text:hover {
	color: white;
	transform: scale(1.05);
}

.hero-socials {
	display: none;
	margin-top: 30px;
	justify-content: center;
	gap: 20px;
}

.hero-socials img {
	width: 28px;
	height: 28px;
}

/* ===== MARK: RESPONSIVE SIDE IMAGES ===== */

/* --- MacBook Pro 16" and larger screens --- */
@media (min-width: 1440px) and (max-width: 1680px) {
	.left-image img,
	.right-image img {
		width: 240px;
		opacity: 1;
	}
}

/* --- MacBook Air / Pro 13"–14" --- */
@media (min-width: 1280px) and (max-width: 1439px) {
	.left-image img,
	.right-image img {
		width: 200px;
		opacity: 1;
	}
}

/* --- iPad Pro landscape --- */
@media (min-width: 1024px) and (max-width: 1279px) {
	.left-image img,
	.right-image img {
		width: 160px;
		opacity: 1;
	}
}

/* --- iPad portrait and small tablets --- */
@media (min-width: 768px) and (max-width: 1023px) {
	.left-image img,
	.right-image img {
		width: 120px;
		opacity: 1;
	}
}

/* --- Mobile phones --- */
@media (max-width: 767px) {
	.left-image,
	.right-image {
		display: none;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.menu-container a {
		font-size: 10px;
	}
}
/* ===== MARK: RESPONSIVE – TABLET (<= 1024px) ===== */
@media (max-width: 1024px) {
	html {
		scroll-padding-top: 75px;
	}
	.hero-layout {
		flex-direction: column;
		padding: 0 24px;
	}

	.hero-headline {
		font-size: 44px;
		line-height: 1.2;
		max-width: 100%;
		text-align: center;
	}

	.description,
	.secondary-description {
		font-size: 18px;
		padding: 0 16px;
		max-width: 100%;
	}

	.hero-buttons {
		/* ensure flex layout remains */
		display: flex;
		justify-content: center;
		gap: 20px;
		padding: 0 24px;
	}
	.hero-buttons .btn {
		flex: 1 1 0; /* share space equally */
		max-width: 340px; /* cap so they don’t get too wide */
		white-space: nowrap;
	}

	.hero-email {
		font-size: 18px;
		margin-top: 32px;
	}

	.email-icon {
		width: 40px;
		height: 40px;
	}

	.left-image,
	.right-image {
		display: none;
	}
}

/* ===== MARK: RESPONSIVE – MOBILE (<= 768px) ===== */
@media (max-width: 768px) {
	html {
		scroll-padding-top: 75px;
	}
	/* Navbar */
	.navbar-inner {
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.menu-container.active {
		display: flex;
	}
	.menu-container {
		margin-top: 20px;
		display: none;
		flex-direction: column;
		align-items: center;
		position: absolute;
		top: 75px;
		left: 32px;
		right: 32px;
		background-color: var(--main-bg);
		z-index: 999;
		padding: 16px 0;
		border-top: 2px solid var(--accent);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	}
	.menu-container .menu {
		flex-direction: column;
		align-items: center;
		gap: 8px;
	}
	.burger {
		display: block;
	}
	.social-icons {
		display: none;
	}

	/* Hero section */
	.hero-section {
		padding: 40px 20px;
	}
	.hero-layout {
		flex-direction: column;
		align-items: center;
		padding: 0 16px;
	}
	.hero-text {
		text-align: center;
		width: 100%;
	}
	.hero-headline {
		font-size: 36px;
		line-height: 1.2;
		word-break: break-word;
		text-align: center;
	}
	.description,
	.secondary-description {
		font-size: 16px;
		padding: 0 8px;
		max-width: 100%;
	}

	/* Hero buttons only: equal width and centered */
	.hero-buttons {
		display: flex;
		flex-direction: column;
		gap: 16px;
		padding: 0 16px;
		align-items: center;
		margin: 32px 0 20px;
	}
	.hero-buttons .btn {
		width: 100%;
		max-width: 320px;
		padding: 14px 24px;
		box-sizing: border-box;
		white-space: nowrap;
		margin: 0 auto;
		font-size: 13.5px;
		line-height: 1.3;
		text-align: center;
	}
	.hero-buttons .btn img {
		width: 16px;
		height: 16px;
		margin: 0;
	}
	.btn.primary img {
		margin-left: 8px;
	}

	/* Reset no-wrap helper */
	.no-wrap {
		white-space: normal;
	}

	/* Email and social icons */
	.hero-email {
		display: flex;
		flex-direction: column;
		gap: 8px;
		font-size: 16px;
		margin-top: 24px;
	}
	.email-icon,
	.hero-socials img {
		width: 40px;
		height: 40px;
	}
	.hero-socials {
		display: flex;
		justify-content: center;
		gap: 20px;
		margin-top: 24px;
	}

	/* Hide side images */
	.left-image,
	.right-image {
		display: none;
	}
}

/* ===== MARK: Method Section ===== */

.method-section {
	background-color: #f4e0d3;
	padding: 40px 20px;
	font-family: "Poppins", sans-serif;
	color: #1c1c1c;
}

/* Divider line */
.top-divider {
	width: 100%;
	height: 2px;
	background-color: #2a1e1c;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	border: none;
	margin-bottom: 40px;
}

/* Header Layout */
.method-header-center {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-bottom: 30px;
	text-align: center;
}

.method-header-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	max-width: 800px;
	width: 100%;
}

.method-title-block {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.method-logo-inline {
	width: 200px;
	height: auto;
	margin-top: 4px;
}

.method-title {
	font-size: 48px;
	font-weight: 400;
	margin: 0;
	font-family: "Playfair Display", serif;
}

/* Gradient Styles */
.gradient-strong {
	font-size: 24px;
	font-weight: 600;
	background: linear-gradient(90deg, #653416 0%, #d37632 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.gradient-text {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 2px;
	text-transform: uppercase;
	background: linear-gradient(90deg, #653416 0%, #d37632 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Paragraphs */
.method-content .paragraph {
	max-width: 1500px;
	margin: 0 auto 20px;
	font-size: 1.1rem;
	font-weight: 500;
	line-height: 1;
}

/* Highlight Block */
.highlight-text {
	text-align: center;
	margin: 40px 0;
	line-height: 1;
}

.highlight-text p {
	background: linear-gradient(90deg, #653416 0%, #cb692c 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
	font-size: 1.2rem;
	margin: 10px 0;
}

/* Bullet List */
.method-list {
	list-style: none;
	padding: 0;
	margin: 20px auto;
	max-width: 800px;
	line-height: 0.5;
}

.method-list li {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 20px;
	font-size: 1rem;
	line-height: 1.2;
}

.method-list li img {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	margin-top: 4px;
}

/* Quote */
.quote {
	font-family: "EB Garamond", serif;
	font-size: 1.5rem;
	font-style: italic;
	text-align: center;
	font-weight: 600;
	margin: 10px auto 30px;
	color: #000;
}

/* Buttons Container */
.method-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin-top: 30px;
}

/* Main Consultation Button */
.btn-consultation {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 24px;
	font-size: 1rem;
	font-weight: 600;
	border: 4px solid #954c20;
	border-radius: 0;
	background: linear-gradient(to right, #b87752 2%, #fdfbec 58%);
	color: #2a1e1c;
	transition: transform 0.3s ease, box-shadow 0.3s ease,
		background-position 0.4s ease, color 0.3s ease;
	background-size: 200% auto;
	background-position: left center;
	gap: 8px;
	white-space: nowrap;
}

.btn-consultation:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	background-position: right center;
	color: #1c0e05;
}

.btn-consultation img {
	width: 22px;
	height: 22px;
}

/* Secondary Text Link Button */
.method-btn-secondary {
	font-size: 1.2rem;
	font-weight: 600;
	color: #3b2f2f;
	text-decoration: none;
	border: none;
	background: none;
	padding: 10px 0;
	transition: color 0.2s ease;
}

.method-btn-secondary:hover {
	color: #a94c1f;
	text-decoration: underline;
}

/*MARK: Mobile for Method Section*/
@media (max-width: 768px) {
	.method-section {
		background-color: #f6ddca;
		padding: 48px 20px 60px;
		color: #222;
	}
	#method .method-title {
		font-weight: 200;
	}
	.gradient-text {
		font-size: 14px;
		letter-spacing: 0.2px;
		text-align: center;
		margin-top: 6px;
	}

	.method-section h2 {
		font-size: 26px;
		font-weight: 700;
		text-align: center;
		margin-bottom: 10px;
		line-height: 1.3;
	}

	#method .method-content p {
		font-size: 16px;
		line-height: 1.4;
		margin-top: 0;
		margin-bottom: 20px;
		text-align: center;
	}

	#method .method-content .highlight-text p {
		margin: 4px 0;
	}

	.method-section strong {
		color: #ba6c44;
		font-weight: 600;
	}

	.method-list {
		list-style: none;
		padding-left: 0;
		margin: 30px 0 20px;
	}

	.method-list li {
		display: flex;
		align-items: flex-start;
		gap: 14px;
		margin-bottom: 16px;
	}

	.method-list li img {
		width: 24px;
		height: 24px;
		margin-top: 5px;
	}
	#method .method-content .highlight-text {
		text-align: center;
		line-height: 1;
		margin: 20px 0;
		font-size: 16px;
		margin: 6px 0;
	}

	#method .quote {
		font-style: italic;
		font-size: 12px;
		text-align: center;
		margin: 20px auto;
		max-width: 100%;
		color: #222;
	}

	.method-buttons {
		display: flex;
		flex-direction: column;
		gap: 20px;
		align-items: stretch;
		margin-top: 32px;
	}

	.btn-consultation {
		background: linear-gradient(to right, #c97b53, #e5c7aa);
		border: 4px solid #8b4a2b;
		color: #2a2a2a;
		font-weight: 700;
		text-transform: uppercase;
		padding: 14px 20px;
		text-align: center;
		width: 100%;
		font-size: 16px;
		border-radius: 4px;
		transition: background 0.3s ease;
	}

	.btn-consultation:hover {
		background: linear-gradient(to right, #d8865f, #f1d9bd);
	}

	.method-buttons .method-btn-secondary {
		display: block;
		width: 100%;
		text-align: center;
	}
}

/* ======================================= */
/* MARK: ABOUT SECTION STYLES                  */
/* ======================================= */
.about-short h3,
.about-full h3,
.about-short h4,
.about-full h4 {
	margin-bottom: 6px; /* или 8px – подбирай визуально */
}

.about-short p,
.about-full p {
	margin-top: 0;
	margin-bottom: 16px; /* опционально: если нужен нижний отступ */
}

/* Section wrapper: background image + color */
.about-section {
	background-color: #151410;
	padding: 40px 40px 80px;
	width: 100%;
	min-height: 100vh;
}

/* Inherit color and font for all children */
.about-section * {
	color: #fdfcfb;
}

/* Flex container for two columns */
.about-inner {
	display: flex; /* enable two-column layout */
	align-items: flex-start; /* align items at top */
	gap: 40px; /* space between columns */
	max-width: 1200px; /* limit overall width */
	margin: 0 auto; /* center on page */
}

/* Left column: image + quote */
.about-visual {
	flex: 0 0 auto; /* width determined by content */
	position: relative;
}

/* Portrait image styling */
.about-image {
	width: 100%;
	max-width: 420px;
	margin-bottom: 20px;
}

.about-content {
	flex: 1 1 0;
	text-align: left;
	display: flex;
	flex-direction: column;
	color: #fdfcfb;
}

.about-quote-wrapper {
	max-width: 600px;
	margin-left: auto;
	padding-right: 40px;
	text-align: right;
	margin-bottom: 40px;
}
.about-quote-wrapper .desktop-only {
	max-width: 500px;
	text-align: right;
	margin-left: auto;
}

.about-quote-desktop {
	font-family: "EB Garamond", serif;
	color: #fdfcfb;
	font-style: italic;
	line-height: 1;
	text-align: right;
	margin: 0;
	max-width: 1280px; /* ✅ Corrected: removed the minus! */
	width: 68%;
	margin-left: auto;
}

.quote-author-desktop {
	font-size: 16px;
	font-weight: 300;
	color: #fdfcfb;
	margin-top: 0;
	text-align: right;
}

.quote-text-desktop {
	font-family: "EB Garamond", serif;
	font-size: 16px;
	line-height: 1.4;
	font-style: italic;
	color: #fdfcfb;
}

.mobile-only {
	display: none;
}

/* Main title styling */
.about-section .about-title {
	font-weight: 500;
	font-family: var(--font-title);
	color: #fdfcfb;
}

.about-content .about-title {
	margin-top: 0;
	text-align: center;
	font-size: 64px;
	line-height: 1.2;
	margin-bottom: 20px;
	text-align: left;
	font-family: var(--font-title);
}
.about-title.mobile-only {
	display: none;
}

.about-title h2 {
	margin-top: 0;
}

/* Subtitle styling */
.about-subtitle {
	font-family: var(--font-body);
	text-align: left;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
	letter-spacing: 0.5px;
}
.gradient-text-about {
	background: linear-gradient(90deg, #8f5e3b 0%, #fefaf7 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	text-transform: none;
}

/* Paragraph styling */
.about-paragraph {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	max-width: 760px;
	margin: 0 auto 12px;
	text-align: left;
	letter-spacing: 0.5px;
}

/* Section titles within content */
.about-section-title {
	font-family: var(--font-body); /* Inter */
	font-weight: 600;
	font-size: 20px;
	text-align: left;
	letter-spacing: 0.5px;
	margin-bottom: 12px;
}

/* List styling */
.about-list {
	list-style: none;
	padding: 0;
	margin: 0 auto 20px;
	max-width: 700px;
}
.about-list li {
	font-family: var(--font-body);
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 10px;
}
.list-icon {
	width: 18px;
	height: auto;
}

/* Read MORE BUTTON */
@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.05);
		opacity: 0.75;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.read-more-btn {
	display: block;
	margin: 2px auto 0;
	background: linear-gradient(90deg, #8f5e3b 0%, #fefaf7 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 600;
	font-size: 16px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	animation: pulse 2.8s infinite;
	text-align: center;
}

.read-more-btn:hover {
	text-decoration: underline;
	background: linear-gradient(90deg, #6f3e23 0%, #fefaf7 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transform: scale(1.04);
}

/* Hide full text by default */
.about-full.hidden {
	display: none;
}

/* CTA container styling (cards + buttons) */
.about-cta-container {
	margin-top: 60px;
	display: flex;
	flex-direction: column;
	gap: 32px;
	align-items: center;
}

/* Stats cards layout */
.about-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
}
.about-card {
	flex: 1 1 280px;
	background: radial-gradient(circle at center, #f9f4f0 10%, #d9bfae 90%);
	padding: 24px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	text-align: center;
	transition: transform 0.3s ease;
}
.about-card:hover {
	transform: translateY(-4px);
}
.about-card h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 0px;
	color: var(--border-dark);
}
.highlight-stat {
	font-size: 24px;
	font-weight: 700;
	background: linear-gradient(90deg, #653416 0%, #cb692c 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 0px;
	padding-top: 4px;
	padding-bottom: 4px;
	display: block;
}
.about-card p {
	font-size: 15px;
	line-height: 1.6;
	color: #151410;
	font-family: var(--font-body); /* ← ADD THIS LINE */
	font-weight: 400; /* ← OPTIONAL: to be extra consistent */
}
section#about .about-card h3 {
	font-size: 24px;
	font-weight: 400; /* switch to thin */
	color: #000; /* force black */
	line-height: 0.8;
}
section#about .about-card {
	padding-top: 32px; /* default is 24px – bump it up a bit */
}

/* CTA buttons layout */
.about-cta-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	margin-top: 20px;
}
.cta-btn {
	font-size: 16px;
	font-weight: 600;
	padding: 16px 32px;
	text-decoration: none;
	transition: all 0.3s ease;
}
.cta-btn.primary {
	background: linear-gradient(to right, #b87752, #fdfbec);
	border: 4px solid #954c20;
	color: #3b2f2f;
}
.cta-btn.primary:hover {
	background: linear-gradient(to right, #c78a67, #fef4e6);
	transform: scale(1.02);
}
.cta-btn.secondary {
	background: none;
	border: none;
	color: var(--main-text400);
}
.cta-btn.secondary:hover {
	text-decoration: underline;
	color: whitesmoke;
}

/* MARK: ABOUT Responsive adjustments */
@media (max-width: 900px) {
	.about-inner {
		flex-direction: column;
		gap: 20px;
	}
	.about-quote {
		margin: 0 auto 20px;
	}
	/* Section padding + background */
	.about-section {
		padding: 40px 20px;
		background-size: cover;
		background-position: top left;
	}

	/* Stack columns */
	.about-inner {
		flex-direction: column;
		gap: 20px;
	}

	/* Title font size */
	.about-title {
		font-size: 36px;
		font-weight: lighter;
		line-height: 1.2;
	}
	/* Hide title mobile on desctop */
	.about-title.mobile-only {
		display: none;
	}
}

@media (max-width: 768px) {
	.about-quote {
		font-style: italic;
		text-align: center;
		margin: 0 auto 20px;
	}

	.quote-text,
	.quote-author-mobile {
		font-size: 14px;
		margin-top: 0;
		text-align: center;
		display: block;
	}
	.quote-text {
		margin-bottom: 10px;
	}
	.desktop-only {
		display: none;
	}
	.mobile-only {
		display: block;
	}
	/* Remove background image and set fallback background color */
	.about-section {
		background-image: none !important;
		background-color: #151410;
	}

	/* Hide the desktop version of the headline */
	.about-content .about-title {
		display: none;
	}

	/* Show the mobile version of the headline */
	#about .about-title.mobile-only {
		display: block;
		margin-bottom: 1rem;
		text-align: center;
		margin: 0 auto 20px auto;
		letter-spacing: 0.5px;
	}

	/* Visual (image) section adjustments */
	.about-visual {
		order: 0;
		display: flex;
		justify-content: center;
	}

	.about-image {
		max-width: 80%;
		height: auto;
	}

	/* Stack columns vertically */
	.about-inner {
		display: flex;
		flex-direction: column;
	}
	.about-title {
		font-size: 36px;
		font-weight: lighter;
		line-height: 1.2;
	}
	/* Resize subtitles and section titles */
	.about-subtitle,
	.about-section-title {
		font-size: 18px;
	}

	/* Resize paragraph text */
	.about-paragraph {
		font-size: 15px;
	}

	/* Stack cards vertically and center them */
	.about-cards {
		flex-direction: column;
		align-items: center;
	}

	.about-card {
		max-height: fit-content;
	}

	.highlight-stat {
		font-size: 22px;
		margin-bottom: 0px;
	}

	/* Make CTA buttons full width */
	.cta-btn {
		width: 100%;
		max-width: 320px;
	}

	.about-cta-buttons {
		text-align: center;
	}
}

/* ─────────────────────────────── */
/* About and Method the Animation On Scroll */
/* ─────────────────────────────── */
.fade-up {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease-out;
}
.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ─────────────────────────────── */
/* Force About title into Playfair 600 */
/* ─────────────────────────────── */
section#about h2.about-title {
	font-family: var(
		--font-title
	) !important; /* var(--font-title) is Playfair Display */
	font-weight: 400 !important;
	font-size: 64px !important;
}
/* ===== MARK: SERVICES SECTION ===== */

.services-section {
	background-color: #f8eae1;
	padding: 100px 20px;
	color: #1c1c1c;
	font-family: var(--font-ui);
	text-align: center;
	padding-top: 40px;
}

.section-title {
	font-size: 48px;
	font-weight: 400;
	margin: 0;
	font-family: "Playfair Display", serif;
}

.section-subtitle {
	font-size: 18px;
	color: #1c1c1c;
	margin-bottom: 60px;
}

.services-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	margin-bottom: 60px;
}

.service-card {
	background-color: #fcf6f3;
	padding: 40px 20px;
	max-width: 320px;
	border: 5px solid transparent;
	box-shadow: 6px 3px 12px rgba(249, 239, 232, 0.3); /* ← softer and tighter */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
	transform: translateY(-2px);
	box-shadow: 6px 3px 14px rgba(249, 239, 232, 0.45);
}

.service-card h3 {
	font-family: "Playfair Display", serif;
	font-size: 36px;
	font-weight: 500;
	margin-top: 0px;
	letter-spacing: 0.1px;
}

.service-card p {
	font-family: "Poppins", sans-serif;
	font-size: 15px;
	margin-top: 0;
	margin-bottom: 20px;
}

.service-icon {
	height: 180px;
	object-fit: contain;
}

.border-gold {
	border-color: #d6a52d;
}

.border-silver {
	border-color: #999;
}

.border-copper {
	border-color: #b86e41;
}

#services .btn-outline {
	display: inline-block;
	padding: 12px 24px;
	font-weight: bold;
	font-size: 14px;
	font-family: var(--font-ui);
	color: #3b2f2f;
	border: 4px solid #954c20;
	background: linear-gradient(
		to right,
		rgba(184, 119, 82, 0.4) 8%,
		rgba(253, 251, 236, 0.4) 98%
	);

	text-decoration: none;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
	box-shadow: none;
}

.btn-outline:hover {
	background: linear-gradient(
		to right,
		rgba(184, 119, 82, 0.35) 8%,
		rgba(253, 251, 236, 0.35) 98%
	);
	color: #3b2f2f;
	border-color: #a85e38;
	transform: translateY(-1px);
	box-shadow: 2px 2px 8px rgba(149, 76, 32, 0.15);
}

.btn-solid {
	display: inline-block;
	background: #b86e41;
	color: white;
	font-weight: 600;
	padding: 12px 24px;
	text-decoration: none;
	transition: background 0.3s ease;
}

.btn-solid:hover {
	background: #a85e38;
}

.services-cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
}

.cta-block {
	max-width: 100%;
	text-align: center;
}

.cta-block .cta-title {
	font-size: 20px;
	font-weight: 500;
	color: #1c1c1c;
	margin-bottom: 4px; /* ↓ closer to paragraph */
}

.cta-block p {
	font-size: 16px;
	color: #1c1c1c;
	margin: 0 0 20px; /* remove padding, set clean spacing below */
}

.cta-block .btn-solid,
.cta-block .btn-outline {
	margin-bottom: 32px; /* more space below button */
}

/** Animation effect for service**/
.services-grid .service-card:nth-child(1) {
	transition-delay: 0.1s;
}
.services-grid .service-card:nth-child(2) {
	transition-delay: 0.2s;
}
.services-grid .service-card:nth-child(3) {
	transition-delay: 0.3s;
}
.services-cta {
	transition-delay: 0.4s;
}

.link-style {
	font-family: var(--font-ui); /* Используется основной UI-шрифт */
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	border: none;
	background: none;
	transition: all 0.3s ease;
	cursor: pointer;
	display: inline-block;
}

.link-style.dark {
	color: #3b2f2f;
}

.link-style.dark:hover {
	text-decoration: underline;
	color: #954c20;
}
.link-lowered {
	margin-top: 12px;
	display: inline-block;
}

/* ===== MARK: MEDIA SERVICES QUERIES: MOBILE STYLING ===== */
@media (max-width: 768px) {
	.services-section {
		padding: 60px 20px;
	}

	.section-title {
		font-size: 42px;
	}

	.section-subtitle {
		font-size: 16px;
		line-height: 1.4;
		margin-bottom: 40px;
	}

	.services-grid {
		flex-direction: column;
		gap: 30px;
		align-items: center;
	}

	.service-card {
		width: 100%;
		max-width: 100%;
		border-radius: 16px;
		padding: 32px 20px;
	}

	.service-icon {
		height: 72px;
	}

	.service-card h3 {
		font-size: 28px;
		margin-top: 16px;
	}

	.service-card p {
		font-size: 16px;
		margin: 10px 0 16px;
	}
	.service-icon {
		height: 100px;
	}

	.btn-outline,
	.btn-solid {
		font-size: 14px;
		padding: 10px 18px;
	}
	.btn-view-details {
		white-space: nowrap;
	}

	.services-cta {
		flex-direction: column;
		gap: 40px;
		margin-top: 40px;
	}

	.cta-block {
		text-align: center;
	}

	.cta-title {
		font-size: 15px;
		margin-bottom: 8px;
	}
}

/* === MARK: Testimonials Section === */
.testimonials-section {
	background-color: #151410;
	padding: 80px 20px;
	color: #fff;
}

/* Headings */
.section-heading {
	font-size: 48px;
	font-weight: 400;
	margin: 0;
	font-family: "Playfair Display", serif;
}

.section-subheading {
	text-align: center;
	font-family: "IBM Plex Sans", sans-serif;
	font-size: 18px;
	margin-bottom: 40px;
	color: #f2f2f2;
}

/* Link style on dark bg */
.link-style-light {
	font-weight: 200;
	color: #fff;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: border-color 0.3s ease;
}
.link-style-light:hover {
	border-color: #fff;
}

/* === Masonry Grid Layout === */
.testimonials-masonry {
	column-count: 3;
	column-gap: 24px;
}

@media (max-width: 1024px) {
	.testimonials-masonry {
		column-count: 2;
	}
}
@media (max-width: 768px) {
	.testimonials-masonry {
		column-count: 1;
	}
}

/* === Testimonial Cards === */

.testimonials-section {
	background-color: #151410;
	padding: 80px 20px;
	color: #fff;
}

.section-heading {
	text-align: center;
	font-family: "Playfair Display", serif;
	font-size: 36px;
	margin-bottom: 8px;
}

.section-subheading {
	text-align: center;
	font-family: "IBM Plex Sans", sans-serif;
	font-size: 18px;
	margin-bottom: 40px;
	color: #f2f2f2;
}

.link-style-light {
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: border-color 0.3s ease;
}
.link-style-light:hover {
	border-color: #fff;
}

/* === Masonry Layout === */
.testimonials-masonry {
	column-count: 3;
	column-gap: 24px;
}

@media (max-width: 1024px) {
	.testimonials-masonry {
		column-count: 2;
	}
}
/* MOBILE – turn masonry into a carousel */
@media (max-width: 768px) {
	.testimonials-masonry {
		column-count: unset; /* remove masonry */
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 16px;
		padding: 16px;
		-webkit-overflow-scrolling: touch;
	}

	.testimonial-card {
		flex: 0 0 90%;
		max-width: 90%;
		scroll-snap-align: center;
		margin-bottom: 0;

		/* NEW — center text */
		display: flex;
		flex-direction: column;
		justify-content: center; /* vertical centering */
		padding: 32px 24px; /* give breathing space */
		text-align: center; /* optional: center text horizontally too */
	}

	.testimonial-text {
		text-align: center;
	}

	/* Optional: hide scrollbar for cleaner look */
	.testimonials-masonry::-webkit-scrollbar {
		display: none;
	}
}

/* === Testimonial Cards === */
.testimonial-card {
	margin-bottom: 24px;
	padding: 24px;
	border-radius: 12px;
	font-family: "IBM Plex Sans", sans-serif;
	break-inside: avoid;
	transition: transform 0.3s ease;
	box-shadow: 0 6px 24px rgba(255, 250, 240, 0.25);
	text-align: left;
}
.testimonial-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(255, 250, 240, 0.4);
}

.testimonial-card.light {
	background-color: #fff9f4;
	color: #151410;
}
.testimonial-card.dark {
	background-color: #f1e1d4;
	color: #151410;
}

.testimonial-text {
	font-size: 16px;
	margin-bottom: 16px;
	line-height: 1.6;
	text-align: left;
}
.testimonial-author {
	font-weight: bold;
	font-style: italic;
	font-size: 15px;
	color: #b87752;
	text-align: right;
}
.testimonial-privacy-note {
	font-size: 13px;
	font-style: italic;
	color: #c8b8aa; /* soft beige tone that fits the site */
	text-align: center;
	margin-top: 24px;
}

/* === CTA Button === */
.cta-center {
	text-align: center;
	margin-top: 40px;
}
.cta-btn.primary {
	font-size: 16px;
	font-weight: bold;
	padding: 16px 32px;
	background: linear-gradient(to right, #b87752, #fdfbec);
	border: 4px solid #954c20;
	color: #3b2f2f;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
}
.cta-btn.primary:hover {
	background: linear-gradient(to right, #c78a67, #fef4e6);
	transform: scale(1.02);
}

/* === Fade Up Animation === */
.fade-up {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.6s ease-out;
}
.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

/** MARK: CONTACT Section**/
.book-section {
	background: url("images/contactImages/BookACallBackground.jpg") no-repeat
		center center;
	background-size: cover;
	padding: 20px 20px;
	font-family: var(--font-ui);
}

.book-container {
	display: flex;
	max-width: 1280px;
	margin: 0 auto;
	gap: 60px;
	align-items: flex-start;
}

/* Left Side */
.left-column {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	position: relative;
}

.book-image {
	width: 300px;
	height: 300px;
	object-fit: cover;
	border-radius: 50%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.quote-bubble {
	background: #f1e7df;
	color: #3b2f2f;
	font-style: italic;
	font-weight: 500;
	border-radius: 40px;
	padding: 20px 30px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	position: relative;
	max-width: 280px;
	font-size: 16px;
}
.quote-bubble.top-left {
	background-color: #fcf6f3;
}
.quote-bubble.bottom-left {
	background-color: #f8eae1;
}

.quote-bubble.top-left .quote-bubble.top-left::after {
	border-right: 20px solid #fcf6f3;
}
.quote-bubble.bottom-left::after {
	border-left: 20px solid #f8eae1;
}

.top-left::after {
	content: "";
	position: absolute;
	left: -20px;
	top: 50%;
	transform: translateY(-50%);
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-right: 20px solid #f1e7df;
}

.bottom-left::after {
	content: "";
	position: absolute;
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 20px solid #f1e7df;
}

/* Right Side */
.right-column {
	flex: 2;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.small-heading {
	text-transform: capitalize;
	font-size: 24px;
	font-family: Playfair Display, serif;
	letter-spacing: 0em;
	color: #3b2f2f;
	margin-bottom: 10px;
}

.right-column h2 {
	font-size: 48px;
	font-weight: 200;
	font-family: Playfair Display, serif;
	color: #3b2f2f;
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: center;
}
.booking-title__free {
	font-weight: 600;
	text-transform: uppercase;
}

.right-column .form-subtext {
	font-family: var(--font-ui);
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 30px;
	color: black;
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d5a48c;
	margin-bottom: 20px;
	font-size: 16px;
	border-radius: 6px;
}

.input-row {
	display: flex;
	gap: 20px;
}
.input-field {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.input-field label {
	margin-bottom: 6px;
	font-size: 14px;
	color: #3b2f2f;
	font-weight: 500;
}

input[type="radio"],
input[type="checkbox"] {
	appearance: none;
	width: 18px;
	height: 18px;
	border: 2px solid #d5a48c;
	border-radius: 50%;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 10px;
	transition: all 0.2s ease;
}

input[type="checkbox"] {
	border-radius: 4px;
}

input[type="radio"]:checked::before,
input[type="checkbox"]:checked::before {
	content: "";
	display: block;
	position: absolute;
	top: 4px;
	left: 4px;
	width: 8px;
	height: 8px;
	background-color: #d5a48c;
	border-radius: 50%;
}

input[type="checkbox"]:checked::before {
	border-radius: 2px;
}

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

fieldset {
	border: none;
	margin-bottom: 20px;
}

legend {
	font-weight: 600;
	margin-bottom: 10px;
	color: #3b2f2f;
}

label {
	display: block;
	margin-bottom: 10px;
	font-size: 15px;
	cursor: pointer;
}
form label {
	color: #1c1c1c; /* Или #3B2F2F — чтобы был читаемый тёмный цвет */
	font-size: 16px;
	font-weight: 400;
}

input[type="radio"],
input[type="checkbox"] {
	margin-right: 10px;
	color: #000;
}

.booking-form button {
	width: 40%;
	display: block;
	background: #3b2f2f;
	color: #fff;
	border: none;
	padding: 16px 28px;
	font-size: 16px;
	cursor: pointer;
	font-weight: 600;
	transition: background 0.3s ease;
}

.booking-form button:hover {
	background: #2d2424;
}

/* ===== MARK: Hide Mobile Visuals on Desktop ===== */
.mobile-visuals {
	display: none;
}

@media (max-width: 1024px) {
	.booking-form button {
		width: 100%;
	}
}
/* ===== MARK: Contact Section Mobile Layout Fix ===== */
@media (max-width: 768px) {
	.book-container {
		flex-direction: column;
		width: 100%;
		max-width: 100%;
	}

	/* Hide desktop version of photo+quotes on mobile */
	.book-container > .left-column:not(.mobile-visuals) {
		display: none;
	}

	/* Show mobile visuals inside right-column */
	.mobile-visuals {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 24px;
		margin: 32px 0;
	}

	.right-column {
		width: 100%;
		max-width: 100%;
		padding: 20px;
	}

	.form-subtext {
		width: 100%;

		padding: 0 10px;
		margin-bottom: 24px;
	}

	.right-column {
		order: 1;
		padding: 20px;
	}
	.right-column .small-heading {
		font-size: 24px;
		font-weight: bold;
	}
	.right-column h2 {
		font-size: 26px;
		line-height: 1.3;
		white-space: normal;
		text-align: center;
		margin-bottom: 16px;
	}
	.small-heading,
	.right-column h2,
	.form-subtext {
		text-align: center;
	}

	.form-subtext {
		max-width: 100%;
		margin: 0 auto;
	}

	.input-row {
		flex-direction: column;
		gap: 10px;
	}
	.booking-form button {
		width: 100%;
	}
}
/* ===== MARK: Footer Styles ===== */
.footer-section {
	background-color: #0e0c0b;
	color: #fff;
	padding: 60px 28px 0px; /* removed extra 30px bottom */
	font-family: var(--font-ui);
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1280px;
	margin: 0 auto;
	gap: 60px;
	justify-content: space-between;
	align-items: flex-start;
}

.footer-logo {
	width: 180px;
	margin-bottom: 16px;
}

.footer-tagline {
	color: #e6d2c2;
	font-size: 15px;
	margin-bottom: 24px;
}

/* ===== MARK: Footer Social Icons ===== */
.footer-socials {
	display: flex;
	gap: 16px;
	margin-top: 20px;
}

.footer-socials img {
	width: 32px;
	height: 32px;
	transition: transform 0.3s ease;
}

.footer-socials a:hover img {
	transform: scale(1.1);
}

.footer-column h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 12px;
}

.footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-column li {
	margin-bottom: 8px;
}

.footer-column a {
	color: #dcdcdc;
	text-decoration: none;
	font-size: 15px;
}

.footer-column a:hover {
	text-decoration: underline;
}

.footer-contact {
	margin-top: 12px;
	font-size: 15px;
	color: #e6d2c2;
	display: flex;
	align-items: center;
	gap: 8px;
}
.footer-email-link {
	color: #fff;
	text-decoration: none;
	font-size: 15px;
}

.footer-email-link:hover {
	text-decoration: underline;
}

.footer-bottom {
	border-top: 1px solid #aaa;
	text-align: center;
	margin-top: 40px;
	padding: 16px 0 8px; /* reduced padding top + bottom */
	font-size: 12px;
	color: #ccc;
}

.footer-contact img.footer-icon {
	width: 20px;
	height: 20px;
	object-fit: contain;
	filter: brightness(95%);
	color: white;
}
.footer-bottom p {
	font-size: 12px;
	line-height: 1.4;
	padding-bottom: 0;
	margin: 0;
	padding: 0;
}

/* ===== MARK: Footer Mobile ===== */
@media (max-width: 768px) {
	.footer-container {
		flex-direction: column;
		align-items: center; /* 👈 CENTER the entire column group */
		text-align: center;
		gap: 40px;
	}

	.footer-column {
		text-align: center;
		align-items: center;
	}

	.footer-column ul {
		padding: 0;
	}

	.footer-socials {
		justify-content: center;
	}

	.footer-contact {
		justify-content: center;
		text-align: center;
	}
	.footer-contact-block {
		padding-left: 2px;
		display: flex;
		flex-direction: column;
		gap: 8px;
	}
	.footer-contact i {
		margin-right: 4px;
	}
	.footer-section .footer-contact img.footer-icon {
		width: 16px;
		height: 16px;
		object-fit: contain;
		filter: brightness(95%);
	}
}
