@charset "UTF-8";

/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	font-family: 'Roboto', sans-serif;
	font-size: 1.6rem;
	background-color: rgb(255, 255, 255);
}

/* ========================================
   UTILITIES & HELPERS
   ======================================== */

.sub-pages main {
	padding-top: 90px;
}

/* ========================================
   TYPOGRAPHY & HEADINGS
   ======================================== */

.section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
	font-size: 1.5rem;
	letter-spacing: 0.06em;
	color: #7a3a26;
	text-transform: uppercase;
	margin-bottom: 1rem;
}
.section-eyebrow i {
	content: '';
	display: inline-block;
	width: 48px;
	height: 3px;
	background: #a17455;
	border-radius: 2px;
}

.section-heading {
	position: relative;
	font-size: 4rem;
	font-weight: 300;
	letter-spacing: 1px;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	color: rgb(95, 58, 59);
}

/* ========================================
   BUTTONS & ANIMATIONS
   ======================================== */

.btn-special-animation {
	position: relative;
	transition: background-color 0.3s;
	overflow: hidden;
	z-index: 0;
}
.btn-special-animation::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.3s;
	z-index: -1;
}
.btn-special-animation:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

/* ========================================
   KEYFRAME ANIMATIONS
   ======================================== */

@keyframes pulse {
	from {
		transform: scale(1);
		opacity: 0.5;
	}
	to {
		transform: scale(1.4);
		opacity: 0;
	}
}

/* ========================================
   NAVIGATION - MOBILE MENU
   ======================================== */

.navbar-mobile {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background-color: rgb(255, 255, 255);
	transform: translateY(100%);
	transition: transform 0.3s;
}
.navbar-mobile.open {
	transform: translate(0);
}
.navbar-mobile__list {
	padding: 1em;
	list-style: none;
}
.navbar-mobile__list li {
	padding: 0.5em;
	position: relative;
}
.navbar-mobile__list li.dropdown > a.navbar-mobile__link {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.navbar-mobile__list li.dropdown > a.navbar-mobile__link::after {
	content: '▼';
	font-size: 0.8em;
	margin-left: 0.5em;
	transition: transform 0.3s;
}
.navbar-mobile__list li.dropdown.open > a.navbar-mobile__link::after {
	transform: rotate(180deg);
}
.navbar-mobile__list li.dropdown .dropdown__menu {
	position: static;
	background: rgb(255, 255, 255);
	box-shadow: none;
	border-radius: 0;
	max-height: 0;
	overflow: hidden;
	opacity: 1;
	visibility: visible;
	transform: none;
	transition: max-height 0.3s ease, padding 0.3s ease;
	padding: 0;
	margin-top: 0;
}
.navbar-mobile__list li.dropdown.open .dropdown__menu {
	max-height: 500px;
	padding: 0.5em 0;
}
.navbar-mobile__list li.dropdown .dropdown__menu li {
	padding-left: 2em;
}
.navbar-mobile__list li.dropdown .dropdown__menu .dropdown__link {
	color: rgb(161, 116, 85);
	font-weight: bold;
	letter-spacing: 0.5px;
	text-decoration: none;
	transition: color 0.3s;
	font-size: 1.4rem;
	padding: 0.5em 0;
}
.navbar-mobile__list li.dropdown .dropdown__menu .dropdown__link:hover {
	color: #e4994a;
}
.navbar-mobile__link {
	text-decoration: none;
	color: rgb(161, 116, 85);
	font-weight: bold;
	letter-spacing: 0.5px;
	transition: color 0.3s;
	text-align: center;
}
.navbar-mobile__link:hover {
	color: rgb(95, 58, 59);
}

/* ========================================
   NAVIGATION - DESKTOP NAVBAR
   ======================================== */

.navbar {
	position: fixed;
	display: flex;
	justify-content: space-between;
	font-family: 'Montserrat', sans-serif;
	width: 100%;
	background-color: rgb(255, 255, 255);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

.navbar.open {
	transform: translateY(0);
}
.navbar__wrapper {
	display: flex;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	align-items: center;
	justify-content: space-between;
}
.navbar__logo img {
	margin: 0.8em 0 0.8em 0.5em;
	/* padding: 0.2em; */
	height: auto;
	width: 140px;
}

.navbar__list {
	display: none;
	list-style: none;
	color: rgb(255, 255, 255);
	font-weight: bold;
	gap: 1.5em;
}
.navbar__link {
	padding: 1em;
	font-size: 1.4rem;
	text-decoration: none;
	letter-spacing: 1px;
	transition: color 0.3s;
	color: rgb(95, 58, 59);
	text-align: left;
	display: inline-block;
}

.navbar__link:hover {
	color: rgb(161, 116, 85);
	color: #e4994a;
}

/* ========================================
   NAVIGATION - DROPDOWN MENUS
   ======================================== */

.dropdown {
	position: relative;
}
.dropdown:hover .dropdown__menu,
.dropdown:focus-within .dropdown__menu {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
	pointer-events: auto;
}
.dropdown.open .dropdown__menu {
	display: block;
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
	pointer-events: auto;
}

.dropdown__menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: linear-gradient(135deg, #5f3a3b 0%, #7a4e3f 100%);
	list-style: none;
	padding: 0.5em 0;
	min-width: 200px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transform: translateY(-10px);
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.dropdown__menu li {
	padding: 0;
}
.dropdown__menu .dropdown__link {
	font-size: 1.2rem;
	letter-spacing: 1px;
	text-decoration: none;
	color: rgb(255, 255, 255);
	display: block;
	padding: 0.8em 1.5em;
	transition: background-color 0.2s ease, padding-left 0.2s ease;
}
.dropdown__menu .dropdown__link:hover {
	background-color: rgba(228, 153, 74, 0.3);
	padding-left: 2em;
}

/* ========================================
   HEADER / HERO SECTION
   ======================================== */

.header {
	position: relative;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

.header__video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
	z-index: 0;
}

.header__overlay {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background-color: rgba(0, 0, 0, 0.5); */
	z-index: 1;
}

.header > * {
	z-index: 2;
}
.header__heading {
	max-width: 950px;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 2px;
	padding: 0.2em;
	font-size: 5rem;
	color: rgb(255, 255, 255);
}
.header__text {
	font-size: 2.5rem;
	color: rgb(196, 196, 196);
	line-height: 1.4;
}
.header__btn {
	margin-top: 1em;
	font-size: 2rem;
	letter-spacing: 1.5px;
	padding: 0.5em 2em;
	background-color: rgb(161, 116, 85);
	color: rgb(255, 255, 255);
	font-weight: 400;
	border: none;
	text-decoration: none;
	cursor: pointer;
}
.header__btn::before {
	background-color: #e4994a;
}
.header__arrow-down {
	position: absolute;
	height: 40px;
	width: 40px;
	left: 50%;
	bottom: 1em;
	transform: translateX(-50%);
	background: none;
	border: 1px solid rgb(255, 255, 255);
	cursor: pointer;
}
.header__arrow-down::before {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid rgb(255, 255, 255);
	cursor: pointer;
	animation: pulse 2s infinite;
}
.header__arrow-down img {
	width: 100%;
	height: auto;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
	position: relative;
	background-image: url('/img/bg_about.webp');
	background-position: center;
	background-size: cover;
	padding: clamp(48px, 6vw, 96px) 24px;
	overflow: hidden;
}
.about__inner {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	gap: 150px;
}
.about__left {
	position: relative;
	z-index: 1;
	color: #2b231d;
}
.about__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: #7a3a26;
	text-transform: uppercase;
}
.about__eyebrow i {
	content: '';
	display: inline-block;
	width: 48px;
	height: 3px;
	background: #a17455;
	border-radius: 2px;
}
.about__title {
	margin: 12px 0 16px;
	font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto,
		sans-serif;
	font-weight: 700;
	line-height: 1.05;
	font-size: clamp(36px, 5.2vw, 72px);
	color: #2b231d;
}
.about__title span {
	color: #a17455;
}
.about__desc {
	margin: 30px 0 30px 0;
	color: #6a5e56;
	line-height: 1.6;
	max-width: 56ch;
}
.about__list {
	list-style: none;
	padding: 0;
	margin: 20px 0 28px;
}
.about__list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
	line-height: 1.6;
	color: #563538;
	letter-spacing: 1px;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.6;
}

.about__left p:last-child {
	color: #563538;
	letter-spacing: 1px;
	font-weight: 700;
}
.about__list li::before {
	/* content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	background-image: url('/img/icons/check.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center; */
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	color: #2b231d;
	font-weight: bold;
	font-size: 1.8rem;
}
.about__lead {
	margin: 0 0 28px;
	font-weight: 700;
	color: #2b231d;
}
.about .btn {
	--pad-x: 22px;
	--pad-y: 12px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: var(--pad-y) var(--pad-x);
	background: rgb(201.4886075949, 158.5316455696, 40.9113924051);
	color: #fff;
	border-radius: 999px;
	font-weight: 700;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.about .btn span {
	display: inline-block;
	transform: translateX(0);
	transition: transform 0.2s ease;
}
.about .btn:hover {
	background: #e4994a;
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}
.about .btn:hover span {
	transform: translateX(2px);
}
.about__right {
	position: relative;
	width: 100%;
	max-width: 600px;
	aspect-ratio: 600 / 640;
	margin-left: auto;
}
.about__photo {
	position: absolute;
	margin: 0;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
	z-index: 1;
}
.about__photo img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
	border: 8px solid #fff;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
}
.about__photo--top {
	top: 0;
	right: -6.67%;
	width: 60%;
	z-index: 3;
}
.about__photo--middle {
	right: 3.33%;
	bottom: 0;
	width: 86.67%;
	z-index: 2;
}
.about__photo--bottom {
	left: -13.33%;
	top: 12.5%;
	width: 70%;
	z-index: 1;
}
.about .about__badge {
	position: absolute;
	right: 30%;
	top: 80%;
	width: clamp(90px, 9vw, 140px);
	aspect-ratio: 1/1;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	background: rgba(215, 173, 58, 0.95);
	color: #5b2c23;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.about .about__badge-num {
	font-size: clamp(32px, 3.6vw, 48px);
	line-height: 1;
	font-weight: 800;
	margin: 0;
}
.about .about__badge-sub {
	font-weight: 700;
	line-height: 1;
	margin: 0;
	font-size: clamp(10px, 1vw, 14px);
}
@media (max-width: 1024px) {
	.about__inner {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 3rem;
	}
	.about__left {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.about__list {
		text-align: left;
	}
	.about__list li {
		padding-left: 24px;
	}
	/* .about__right {
		display: none;
	} */
	.about__right {
		margin: 0 auto;
		max-width: 400px;
		padding: 0 2rem;
	}
	.about__palette {
		display: none;
	}
}
@media (max-width: 640px) {
	.about__right {
		max-width: 280px;
	}
	.about__photo img {
		border-width: 6px;
	}
	.about__badge {
		right: 4%;
		top: 6%;
	}
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits {
	padding: 5em;
	text-align: center;
	background-color: rgb(255, 255, 255);
}
.benefits__title {
	color: rgb(161, 116, 85);
	margin-bottom: 0.5em;
}
.benefits__description:first-of-type {
	display: inline-block;
	max-width: 1200px;
	font-size: 1.6rem;
	padding: 0.5em 0;
	margin-bottom: 4em;
	color: #606060;
	line-height: 1.6;
}
.benefits__box {
	display: flex;
	justify-content: center;
	gap: 3em;
}
.benefits__benefit {
	flex: 1;
	max-width: 250px;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.benefits__benefit.animate {
	opacity: 1;
	transform: translateY(0);
}
.benefits__benefit:nth-child(1) {
	transition-delay: 0.2s;
}
.benefits__benefit:nth-child(2) {
	transition-delay: 0.5s;
}
.benefits__benefit:nth-child(3) {
	transition-delay: 0.8s;
}
.benefits__benefit:nth-child(4) {
	transition-delay: 1.1s;
}
.benefits h3 {
	padding: 0.5em;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 1px;
	color: rgb(161, 116, 85);
}
.benefits p {
	color: #606060;
	font-size: 1.5rem;
}
.benefits__icon {
	width: 150px;
	height: 150px;
	object-fit: contain;
	margin-bottom: 1rem;
}

/* ========================================
   SERVICES SECTION (HORIZONTAL SCROLL CARDS)
   ======================================== */

.services {
	position: relative;
	padding: 5em;
	text-align: center;
	background-image: url('/img/wood-2045380_1280.jpg');
	background-position: center;
	background-size: cover;
	isolation: isolate;
	/* VIEWPORT (maskuje overflow) */
	/* TRACK = poziomy slider (scroll-snap) */
	/* KARTY */
	/* Obrazek w karcie */
	/* Nawigacja (strzałki) */
	/* Desktop: pokaż więcej kart naraz */
}
.services::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: -1;
}
.services > * {
	position: relative;
	z-index: 1;
}
.services__title {
	color: rgb(161, 116, 85);
	margin-bottom: 0.5em;
}
.services__description:first-of-type {
	display: inline-block;
	margin-bottom: 2.5em;
	max-width: 1200px;
	font-size: 1.6rem;
	color: #c2c2c2;
	line-height: 1.6;
}
.services__viewport {
	max-width: 1200px;
	margin: 0 auto;
	overflow: hidden;
	padding: 0 1rem;
}
.services__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 48px) / 3);
	gap: 24px;
	padding: 8px 4px 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.services__track::-webkit-scrollbar {
	display: none;
}
.services__service {
	scroll-snap-align: start;
	padding: 1.5em 1em;
	background-color: rgba(54, 37, 30, 0.4);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);
	border-radius: 14px;
	min-height: 420px;
	display: grid;
	grid-template-rows: auto auto 1fr auto;
	align-items: start;
}
.services__service:hover img {
	outline-color: #e4994a;
	outline-width: 4px;
}
.services img {
	width: 233px;
	height: 233px;
	max-width: 100%;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	outline: 3px solid transparent;
	transition: outline-color 0.3s;
	justify-self: center;
}
.services h3 {
	padding: 0.7em 0 0.3em;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 1px;
	font-size: 2rem;
	color: rgb(161, 116, 85);
}
.services p {
	font-size: 1.5rem;
	line-height: 1.5;
	color: #c2c2c2;
}
.services__btn {
	display: inline-block;
	margin: 1em 0 0;
	padding: 0.5em 1em;
	background-color: rgb(95, 58, 59);
	color: rgb(255, 255, 255);
	text-decoration: none;
}
.services__btn::before {
	background-color: #e4994a;
}
.services__nav {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 1400px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 1rem;
	pointer-events: none;
	z-index: 10;
}
.services__nav .services__prev,
.services__nav .services__next {
	pointer-events: auto;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgb(95, 58, 59);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	font-size: 28px;
	line-height: 50px;
	display: grid;
	place-items: center;
	transition: transform 0.15s ease, background 0.2s ease;
	color: rgb(255, 255, 255);
}
.services__nav .services__prev:hover,
.services__nav .services__next:hover {
	transform: scale(1.1);
	background: #e4994a;
	color: white;
}

/* ========================================
   GALLERY SECTION
   ======================================== */

.gallery__box {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}
.gallery__item {
	width: 33.333%;
	height: 400px;
	overflow: hidden;
	display: flex;
}
.gallery img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: transform 0.3s ease-in-out;
}
.gallery img:hover {
	transform: scale(1.2);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
	padding: 5em 3em;
	text-align: center;
	background-color: rgb(255, 255, 255);
}
.testimonials__box {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
}
.testimonials__testimonial {
	position: relative;
	margin-top: 5em;
	background: white;
	padding: 4em 1em 2em 1em;
	border-radius: 15px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	flex: 1;
	max-width: 320px;
	text-align: center;
	transition: transform 0.3s ease-in-out;
}
.testimonials__testimonial:hover {
	transform: translateY(-5px);
}
.testimonials__testimonial img {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	margin-bottom: 1em;
}
.testimonials__text {
	font-size: 1.5rem;
	color: #666;
	margin-bottom: 0.5em;
	line-height: 1.6;
}
.testimonials__text::before {
	content: '\f10d';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 1.4em;
	color: rgb(161, 116, 85);
	margin-right: 0.2em;
}
.testimonials__text::after {
	content: '\f10e';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 20px;
	color: rgb(161, 116, 85);
	margin-left: 0.2em;
}
.testimonials__author {
	font-size: 1.4rem;
	font-weight: bold;
	color: rgb(0, 0, 0);
}

/* ========================================
   PARTNERS / LOGOS SECTION
   ======================================== */

.partners {
	padding: 5em 2em;
	background-color: rgb(255, 255, 255);
	text-align: center;
}

.partners__logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 5em;
	margin-top: 2em;
}

.partners__logos img {
	max-height: 200px;
	-o-object-fit: contain;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: filter 0.3s, opacity 0.3s;
}

.partners__logos img:hover {
	filter: grayscale(0%);
	opacity: 1;
}

/* ========================================
   CTA (CALL TO ACTION) SECTION
   ======================================== */

.cta {
	position: relative;
	text-align: center;
	padding: 5em;
	background-image: url('/img/Obraz5.jpg');
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.cta.cta--carpentry,
.cta.carpentry__cta {
	background-image: url('/img/carving-tools-5284136_640.jpg') !important;
}
.cta.warehouse__cta {
	background-image: url('/img/istockphoto-920495528-1024x1024.jpg') !important;
}
.cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 1;
}
.cta__content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
}
.cta__title {
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 1px;
	text-align: center;
	font-size: 5rem;
	color: rgb(222, 222, 222);
}
.cta__subtitle {
	margin-top: 1em;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 1px;
	text-align: center;
	font-size: 3rem;
	color: rgb(222, 222, 222);
}
.cta__description {
	font-size: 2rem;
	margin: 3em 0;
	color: rgb(222, 222, 222);
	line-height: 1.5;
}
.cta__btn {
	display: inline-block;
	margin: 1em 0;
	padding: 1em 2em;
	background-color: rgb(161, 116, 85);
	color: rgb(255, 255, 255);
	text-decoration: none;
}
.cta__btn::before {
	background-color: #e4994a;
}

/* ========================================
   FOOTER SECTION
   ======================================== */

.footer {
	background-color: #371c23;
	padding: 2em 1em;
	text-align: center;
}
.footer__container {
	display: flex;
	justify-content: space-between;
	gap: 3em;
	max-width: 1400px;
	margin: 0 auto;
	flex-wrap: wrap;
}
.footer__column {
	flex: 1;
	min-width: 200px;
	text-align: start;
	padding: 1em;
}
.footer__logo {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.footer__logo img {
	width: 170px;
	margin-bottom: 0.5em;
}
.footer__logo p {
	font-size: 1rem;
	color: #aaa;
}
.footer__title {
	letter-spacing: 1.5px;
	margin-bottom: 1em;
	font-size: 1.5rem;
	color: #fff;
}
.footer__links {
	list-style: none;
}
.footer__links li {
	margin: 5px 0;
	padding-bottom: 0.5em;
}
.footer__links--with-icons li {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.footer__icon {
	width: 30px;
	height: 30px;
	object-fit: contain;
	flex-shrink: 0;
}
.footer__links li a {
	color: #aaa;
	text-decoration: none;
	transition: color 0.3s;
	line-height: 1.6;
}
.footer__links li a:hover {
	color: #fff;
}
.footer__socials {
	display: flex;
	justify-content: start;
	gap: 0.5em;
}
.footer__socials a img {
	width: 50px;
	height: 50px;
	transition: filter 0.3s ease, transform 0.3s ease;
}
.footer__socials a:hover img {
	filter: brightness(0) invert(1);
	transform: scale(1.1);
}
.footer__socials a {
	color: #aaa;
	font-size: 3rem;
	transition: color 0.3s;
}
.footer__socials a:hover {
	color: #fff;
}
.footer__bottom {
	max-width: 1400px;
	margin: 20px auto 0 auto;
	border-top: 1px solid #835c46;
	padding-top: 10px;
	font-size: 1.2rem;
	color: #835c46;
}

@media (max-width: 1200px) {
	.footer__container {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2em;
	}
	.footer__logo {
		align-items: flex-start;
	}
	.footer__column:nth-child(2),
	.footer__column:nth-child(3),
	.footer__column:nth-child(4) {
		grid-column: span 1;
	}
}

@media (max-width: 768px) {
	.footer__container {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.footer__logo {
		align-items: center;
	}
	.footer__column {
		margin-bottom: 20px;
		text-align: center;
	}
	.footer__column:nth-child(1),
	.footer__column:nth-child(2),
	.footer__column:nth-child(3),
	.footer__column:nth-child(4),
	.footer__column:nth-child(5) {
		grid-column: span 1;
	}
	.footer__title {
		text-align: center;
	}
	.footer__links {
		text-align: center;
	}
	.footer__links--with-icons {
		margin-left: 0;
	}
	.footer__links--with-icons li {
		justify-content: center;
	}
	.footer__socials {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.footer__column {
		margin-bottom: 20px;
	}
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact__intro {
	text-align: center;
	font-size: 1.8rem;
	margin-bottom: 2em;
	color: rgb(95, 58, 59);
}

.contact-page h1.section-heading {
	padding: 2em 0;
}

.form-message {
	max-width: 800px;
	margin: 2em auto;
	padding: 1.5em;
	border-radius: 5px;
	font-size: 1.6rem;
	text-align: center;
}

.form-message--success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.form-message--error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.contact__wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	padding: 0 2em;
	gap: 4em;
	margin: 0 auto 3em;
	max-width: 100%;
	text-align: left;
}

.contact__form,
.contact__info {
	flex: 1 1 400px;
	max-width: 500px;
	box-sizing: border-box;
	margin: 0 auto;
}

.contact__form label {
	display: block;
	margin-top: 1em;
	margin-bottom: 0.5em;
	font-weight: bold;
	color: #333;
	letter-spacing: 1px;
}

.contact__form input,
.contact__form textarea {
	width: 100%;
	padding: 1em;
	font-size: 1.6rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.contact__form button {
	margin-top: 1.5em;
	padding: 0.8em 2em;
	font-size: 1.6rem;
	background-color: #a17455;
	color: #fff;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.contact__form button:hover {
	background-color: #e4994a;
}

.contact__info h3 {
	margin-bottom: 1em;
	font-family: 'Montserrat', sans-serif;
	font-size: 2.2rem;
	color: #5f3a3b;
}

.contact__info p {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2em;
	font-size: 1.6rem;
	color: #333;
}

.contact__icon {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	object-fit: contain;
}

.contact__info span {
	display: flex;
	align-items: center;
}

.contact__info a {
	font-size: 1.6rem;
	color: #333;
	text-decoration: none;
	transition: color 0.3s;
}

.contact__info a:hover {
	color: #a17455;
}

.contact__map {
	margin-top: 4em;
}

.contact__map iframe {
	width: 100%;
	height: 600px;
	border: none;
	display: block;
}

/* ========================================
   MEDIA QUERIES - TABLETS (max-width: 991px)
   ======================================== */

@media (max-width: 991px) {
	.testimonials__box {
		flex-direction: column;
		align-items: center;
	}
	.testimonials__testimonial {
		max-width: 600px;
		width: 100%;
	}
}

/* ========================================
   MEDIA QUERIES - DESKTOP (1025px+)
   ======================================== */

@media (min-width: 1025px) {
	.navbar-mobile {
		display: none;
	}
	.navbar {
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	}
	.navbar__wrapper {
		width: 100%;
		background: none;
	}
	.navbar__wrapper button {
		display: none;
	}
	.navbar__list {
		display: flex;
	}
}
/* ========================================
   MEDIA QUERIES - TABLET (max-width: 768px)
   ======================================== */

@media (max-width: 768px) {
	.header__heading {
		padding: 0 1em;
		font-size: 3rem;
	}
	.header__text {
		padding: 0.5em 1em;
		font-size: 1.9rem;
	}
	.gallery__item {
		width: 50%;
		height: 400px;
	}
	.benefits__box {
		flex-wrap: wrap;
		align-items: center;
	}
	.services__box {
		flex-wrap: wrap;
		align-items: center;
	}
	.cta {
		background-attachment: scroll;
	}
}
/* ========================================
   MEDIA QUERIES - MOBILE (max-width: 576px)
   ======================================== */

@media (max-width: 576px) {
	.header__heading {
		padding: 0 1em;
		font-size: 2rem;
	}
	.header__text {
		padding: 0.5em 1em;
		font-size: 1.5rem;
	}
	.header__btn {
		padding: 0.5em 1.5em;
		font-size: 1.5rem;
	}
	.header__arrow-down {
		display: none;
	}
	.benefits {
		padding: 3em 1.5em;
	}
	.benefits__box {
		flex-direction: column;
		align-items: center;
	}
	.services {
		padding: 3em 1.5em;
	}
	.services__box {
		flex-direction: column;
		align-items: center;
	}
	.testimonials {
		padding: 3em 1.5em;
	}
	.partners {
		padding: 3em 1.5em;
	}
	.partners__logos {
		gap: 0;
	}
	.cta {
		padding: 3em 1.5em;
	}
	.cta__title {
		font-size: 4rem;
	}
	.cta__subtitle {
		font-size: 2.5rem;
	}
	.cta__description {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	.contact__wrapper {
		flex-direction: column;
	}

	.services__viewport {
		padding: 0 0.5rem;
	}

	.services__track {
		grid-auto-columns: calc(100% - 12px);
		gap: 12px;
	}
}

@media (min-width: 769px) and (max-width: 1023px) {
	.services__track {
		grid-auto-columns: calc((100% - 24px) / 2);
	}
}

@media (min-width: 1024px) {
	.services__track {
		grid-auto-columns: calc((100% - 48px) / 3);
	}
} /*# sourceMappingURL=style.css.map */
