@import url("../assets/bootstrap/bootstrap.min.css");
@import url("../assets/jquery/jquery-ui/jquery-ui.css");
@import url("../assets/owlcarousel/owl.carousel.min.css");
@import url("../assets/fancybox/jquery.fancybox.min.css");
@import url("../assets/aos/aos.css");
/*
* ----------------------------------------------------------------------------------------
* Fonts
* ----------------------------------------------------------------------------------------
*/
@import url("../assets/fonts/fontawesome-free-6.7.2-web/css/all.min.css");
@import url("../assets/fonts/bootstrap-icons-1.11.3/font/bootstrap-icons.min.css");
/*
* ----------------------------------------------------------------------------------------
* General & Variables
* ----------------------------------------------------------------------------------------
*/
:root {
 --body-bg: #fffcf8;
 --container-gradient: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
 --pattern-color: rgba(245, 158, 11, 0.05); /* Легкий оранжевый паттерн */
 --p-accent: #f59e0b;     /* Основной оранжевый (Янтарный) */
 --p-link: #78350f;       /* Глубокий коричневый для ссылок */
 --p-link-hover: #d97706;  /* Темный мед */
 --p-dark: #451a03;       /* Глубокий шоколад для заголовков */
 --p-text: #57534e;       /* Мягкий теплый графит для чтения */
 --p-white: #ffffff;
 --p-border: #f2e8da;     /* Теплая граница */
 --p-slate-400: #a8a29e;  /* Теплый серый для служебных текстов */
}
body {
	margin: 0;
	background-color: var(--body-bg);
	background-image: var(--container-gradient), radial-gradient(var(--pattern-color) 1px, transparent 1px);
	background-size: 100% 100%, 40px 40px;
	background-attachment: fixed;
	font-family: 'Inter', sans-serif;
	scroll-behavior: smooth;
	color: var(--p-text);
	line-height: 1.6;
}
html, body {
	overflow-x: hidden;
	width: 100%;
}
/* Recaptcha */
.grecaptcha-badge {
	display: none !important;
}
a {
	color: var(--p-link);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}
a:hover {
	color: var(--p-link-hover);
}
ul, ol {
	padding-left: 1.2rem;
	margin-bottom: 1.5rem;
}
li {
	margin-bottom: 0.5rem;
}
ul {
	list-style: none;
}
article ul li::before {
	content: "—";
	color: var(--p-accent);
	font-weight: bold;
	display: inline-block;
	width: 1.5rem;
	margin-left: -1.5rem;
}
article ol {
	list-style: none;
	counter-reset: ht-counter;
	padding-left: 1.5rem;
}
article ol li {
	counter-increment: ht-counter;
	position: relative;
}
article ol li::before {
	content: counter(ht-counter) ".";
	color: var(--p-accent);
	font-weight: bold;
	display: inline-block;
	width: 1.5rem;
	margin-left: -1.5rem;
}
/* Заголовки */
h1, h2, h3, h4, h5, h6 {
	color: var(--p-dark);
	font-weight: 800;
	line-height: 1.2;
	margin-top: 2rem;
	margin-bottom: 1rem;
}
p {
	margin-bottom: 1.2rem;
}
::selection {
	background-color: var(--p-accent);
	color: var(--p-white);
}
hr {
	border: 0;
	border-top: 1px solid var(--p-border);
	margin: 2.5rem 0;
}
img {
	max-width: 100%;
	height: auto;
}
/*
* ----------------------------------------------------------------------------------------
* Header
* ----------------------------------------------------------------------------------------
*/

header {
 --h-main: #f59e0b;
 --h-deep: #d97706;
 --h-white: #ffffff;
 --h-text-dark: #451a03;
	position: relative;
	z-index: 1050;
}
header::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, var(--h-main) 0%, var(--h-deep) 100%);
	backdrop-filter: blur(15px);
	box-shadow: 0 10px 30px rgba(217, 119, 6, 0.3);
	border-bottom: 1px solid rgba(255,255,255,0.2);
	z-index: -1;
}
header .sticky {
	padding: 15px 0;
	transition: all 0.5s ease;
}
header .sticky.active {
	position: fixed;
	top: 15px;
	left: 15px;
	right: 15px;
	background: linear-gradient(90deg, #fbbf24, #f59e0b);
	border-radius: 60px;
	padding: 10px 25px;
	box-shadow: 0 15px 35px rgba(180, 83, 9, 0.4);
}
header .navbar-brand {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	line-height: 1;
}
header .brand-top {
	font-size: 1.7rem;
	font-weight: 900;
	color: #ffffff !important;
	text-transform: uppercase;
	letter-spacing: -0.5px;
	margin: 0;
	padding: 0;
	text-shadow: 0 1px 0 #fbbf24, 0 2px 0 #d97706, 0 3px 6px rgba(0,0,0,0.2);
	transition: all 0.3s ease;
}
header .brand-bottom {
	font-size: 0.8rem;
	font-weight: 700;
	color: #ffffff !important;
	text-transform: lowercase;
	letter-spacing: 2px;
	margin-top: 2px;
	opacity: 0.9;
	text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
header .navbar-brand:hover .brand-top {
	transform: translateY(-2px);
	text-shadow: 0 1px 0 #fbbf24, 0 3px 0 #d97706, 0 6px 12px rgba(0,0,0,0.3);
}
.dropdown-toggle::after {
	display: none !important;
}

@media (min-width: 992px) {
header .navbar-nav {
	gap: 2px;
	align-items: center;
}
header .nav-link {
	color: #fff !important;
	font-weight: 700;
	padding: 8px 12px !important;
	border-radius: 30px;
	transition: 0.3s;
	display: flex;
	gap: 0;
	align-items: center;
	height: auto;
	line-height: 1;
}
header .nav-link:hover {
	background: rgba(255, 255, 255, 0.2);
}
header .nav-link .bi-dot {
	font-size: 1.8rem;
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: -1px;
	margin-right: -2px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1;
	pointer-events: none;
}
header .dropdown-menu {
	display: block !important;
	visibility: hidden;
	opacity: 0;
	transform: translateY(15px);
	transition: 0.4s ease;
	background: #fff;
	border: none;
	border-radius: 20px;
	padding: 10px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
header .nav-item.dropdown:hover > .dropdown-menu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}
header .dropdown-item {
	border-radius: 12px;
	color: var(--h-text-dark) !important;
	font-weight: 600;
}
header .dropdown-item:hover {
	background: var(--h-main);
	color: #fff !important;
}
}

@media (max-width: 991px) {
.offcanvas .navbar-nav {
	width: 100%;
	padding: 20px;
}
.offcanvas .nav-item {
	position: relative;
	margin-bottom: 10px;
}
.offcanvas .nav-link .bi-dot {
	display: none !important;
}
.offcanvas .nav-link {
	color: var(--h-text-dark) !important;
	font-weight: 800;
	font-size: 1.3rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: left;
	padding: 15px !important;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.offcanvas .dropdown-toggle::before {
	content: '\f282';
	font-family: "bootstrap-icons";
	width: 35px;
	height: 35px;
	background: var(--h-main);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
	order: 2;
}
.offcanvas .dropdown-toggle.show::before {
	transform: rotate(180deg);
	background: var(--h-text-dark);
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
.offcanvas .dropdown-menu {
	position: static !important;
	float: none !important;
	background: transparent !important;
	border: none !important;
	padding-left: 20px !important;
	display: none;
}
.offcanvas .dropdown-item {
	font-size: 1.1rem;
	font-weight: 600;
	padding: 10px 0;
	border-bottom: 1px solid rgba(0,0,0,0.05);
	text-align: left;
}
}
header .header-phone {
	background: #fff;
	color: var(--h-main) !important;
	padding: 10px 20px !important;
	border-radius: 50px;
	font-weight: 900;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
header .header-phone:hover {
	transform: scale(1.05) rotate(-3deg);
	background: var(--h-text-dark);
	color: #fff !important;
}
header .opener-menu {
	color: #fff !important;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.4);
	width: 56px;
	height: 56px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	margin-left: auto;
	padding: 0;
	cursor: pointer;
	border-radius: 12px;
}
header .hamburger-box {
	width: 22px;
	height: 14px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 4px;
}
header .hamburger-box span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--h-white) !important;
	border-radius: 4px;
	transition: all 0.3s ease;
}
header .hamburger-box span:nth-child(2) {
	width: 14px;
}
header .opener-menu .menu-text {
	color: var(--h-white) !important;
	font-size: 0.55rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1;
}
header .opener-menu:hover {
	background: var(--h-deep);
}
header .opener-menu:hover .hamburger-box span:nth-child(2) {
	width: 100%;
}
/*
* ----------------------------------------------------------------------------------------
* Offcanvas & Modal
* ----------------------------------------------------------------------------------------
*/

.offcanvas, .modal-content {
 --oc-bg: #fffcf8;
 --oc-header-bg: linear-gradient(180deg, var(--h-main) 0%, var(--h-deep) 100%);
 --oc-title-color: #ffffff;
 --oc-close-bg: #ffffff;
 --oc-shadow: rgba(69, 26, 3, 0.15);
	background-color: var(--oc-bg) !important;
	border: none !important;
}
.offcanvas-header, .modal-header {
	background: var(--oc-header-bg) !important;
	padding: 1.2rem 1.5rem !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	border: none !important;
}
.offcanvas-title, .modal-title {
	color: var(--oc-title-color) !important;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 1.1rem;
	margin: 0;
}
.btn-close {
	background-image: none !important;
	background-color: var(--oc-close-bg) !important;
	border-radius: 50% !important;
	opacity: 1 !important;
	width: 20px !important;
	height: 20px !important;
	border: 1px solid rgba(0, 0, 0, 0.1) !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	position: relative;
}
.btn-close::before {
	content: '\f659';
	font-family: "bootstrap-icons" !important;
	color: var(--h-text-dark, #451a03) !important;
	font-size: 1.2rem;
	font-weight: 900 !important;
	line-height: 1;
	display: block;
}
.btn-close:hover {
	transform: rotate(360deg) scale(1.1) !important;
	box-shadow: 0 8px 20px rgba(0,0,0,0.2) !important;
}
.show .btn-close, .offcanvas.show .btn-close {
	animation: btn-pop-spin 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
 @keyframes btn-pop-spin {
 from {
transform: rotate(-180deg) scale(0);
opacity: 0;
}
 to {
transform: rotate(0deg) scale(1);
opacity: 1;
}
}

@media (min-width: 992px) {
header .offcanvas-header {
	display: none !important;
}
}
/*
* ----------------------------------------------------------------------------------------
* Hero
* ----------------------------------------------------------------------------------------
*/
#hero {
 --hero-orange: #f59e0b;
 --hero-dark: #451a03;
 --hero-text: #57534e;
 --hero-bg-page: #fffcf8;
	padding: 80px 0 60px;
	background-color: var(--hero-bg-page);
	position: relative;
	z-index: 1;
}
#hero .hero-inner-card {
	background: #ffffff;
	border-radius: 40px;
	padding: 60px;
	box-shadow: 0 25px 70px rgba(69, 26, 3, 0.1);
	border: 1px solid rgba(242, 232, 218, 0.6);
	position: relative;
}
#hero .hero-tag {
	display: inline-block;
	background: #fff7ed;
	color: var(--hero-orange);
	padding: 6px 18px;
	border-radius: 50px;
	font-weight: 800;
	font-size: 0.8rem;
	text-transform: uppercase;
	margin-bottom: 20px;
}
#hero .hero-title {
	font-size: clamp(2.2rem, 5vw, 3.2rem);
	font-weight: 900;
	color: var(--hero-dark);
	line-height: 1.1;
	margin-bottom: 20px;
}
#hero .hero-accent {
	color: var(--hero-orange);
}
#hero .hero-desc {
	font-size: 1.15rem;
	color: var(--hero-text);
	max-width: 500px;
	margin-bottom: 35px;
}
#hero .hero-features {
	display: flex;
	gap: 25px;
	margin-bottom: 40px;
}
#hero .feat {
	display: flex;
	align-items: center;
	gap: 10px;
}
#hero .feat i {
	font-size: 1.4rem;
	color: var(--hero-orange);
}
#hero .feat span {
	font-weight: 700;
	color: var(--hero-dark);
	font-size: 0.9rem;
}
#hero .btn-hero-primary {
	display: inline-block;
	background: var(--hero-orange);
	color: #fff !important;
	padding: 18px 40px;
	border-radius: 50px;
	font-weight: 800;
	text-transform: uppercase;
	box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
	transition: 0.3s ease;
}
#hero .btn-hero-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4);
}
#hero .hero-glass-stack {
	position: relative;
	height: 450px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#hero .glass-layer {
	position: absolute;
	background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 40px;
	z-index: 1;
}
#hero .layer-1 {
	width: 300px;
	height: 350px;
	transform: rotate(-10deg) translateX(-40px);
}
#hero .layer-2 {
	width: 280px;
	height: 320px;
	transform: rotate(5deg) translateX(20px);
	opacity: 0.7;
}
#hero .layer-3 {
	width: 320px;
	height: 300px;
	transform: rotate(-3deg) translateY(30px);
	opacity: 0.5;
}
#hero .promo-glass-card {
	position: absolute;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 15px 20px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	gap: 15px;
	box-shadow: 0 15px 35px rgba(69, 26, 3, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.6);
	width: 250px;
	z-index: 5;
	transition: all 0.4s ease;
}
#hero .promo-glass-card:hover {
	transform: scale(1.05) translateY(-5px);
	background: #ffffff;
	box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}
#hero .g-card-1 {
	top: 40px;
	right: 20px;
}
#hero .g-card-2 {
	top: 50%;
	left: -30px;
	transform: translateY(-50%);
}
#hero .g-card-3 {
	bottom: 40px;
	right: 0;
}
#hero .g-icon {
	font-size: 1.5rem;
	color: var(--hero-orange);
}
#hero .g-title {
	display: block;
	font-weight: 800;
	color: var(--hero-dark);
	font-size: 0.95rem;
}
#hero .g-sub {
	font-size: 0.75rem;
	color: var(--hero-text);
	font-weight: 500;
}
#hero .promo-glass-price {
	position: absolute;
	top: 15px;
	left: 20px;
	background: var(--hero-orange);
	color: white;
	padding: 15px 25px;
	border-radius: 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
	z-index: 10;
	animation: floating-price 4s infinite ease-in-out;
}
#hero .promo-glass-price::after {
	content: '';
	position: absolute;
	inset: -5px;
	border: 2px solid var(--hero-orange);
	border-radius: 30px;
	opacity: 0;
	animation: price-pulse 2s infinite;
}
 @keyframes price-pulse {
 0% {
transform: scale(1);
opacity: 0.5;
}
 100% {
transform: scale(1.2);
opacity: 0;
}
}
 @keyframes floating-price {
 0%, 100% {
transform: translateY(0);
}
 50% {
transform: translateY(-10px);
}
}
#hero .p-val {
	font-size: 1.7rem;
	font-weight: 900;
	line-height: 1;
}
 @keyframes floating-glass {
 0%, 100% {
transform: translateY(0);
}
 50% {
transform: translateY(-10px);
}
}
#hero .promo-circle-img {
	position: absolute;
	top: -80px;
	right: 20px;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	border: 6px solid #fff;
	box-shadow: 0 15px 35px rgba(69, 26, 3, 0.15);
	overflow: hidden;
	z-index: 10;
	transform: rotate(-5deg);
}
#hero .promo-circle-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 991px) {
#hero .hero-inner-card {
	padding: 40px 20px;
}
#hero .hero-features {
	flex-wrap: wrap;
}
#hero .hero-glass-stack {
	height: auto;
	padding: 40px 0;
}
}
/*
* ----------------------------------------------------------------------------------------
* House
* ----------------------------------------------------------------------------------------
*/





#house {
 --h-orange: #f59e0b;
 --h-dark: #451a03;
 --h-green: #15803d;
 --h-border: #f2e8da;
 --h-text: #57534e;
 --h-bg-light: #fff7ed;
	padding: 40px 0;
}
#house .house-card {
	background: #fff;
	border-radius: 40px;
	padding: 40px;
	box-shadow: 0 30px 60px rgba(69, 26, 3, 0.08);
}
#house .house-title {
	font-size: 2.2rem;
	font-weight: 900;
	color: var(--h-dark);
	margin-bottom: 20px;
}
#house .house-params {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
}
#house .param {
	background: var(--h-bg-light);
	color: var(--h-dark);
	padding: 8px 16px;
	border-radius: 12px;
	font-size: 0.9rem;
}
#house .param b {
	color: var(--h-orange);
}
#house .house-details {
	margin-bottom: 35px;
}
#house .detail-row {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 12px;
	font-size: 1rem;
	line-height: 1.4;
}
#house .text-orange {
	color: var(--h-orange);
}
#house .text-green {
	color: var(--h-green);
}
#house .pricing-label {
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--h-dark);
}
#house .price-grid-scroll {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
	gap: 12px;
	margin-bottom: 30px;
}
#house .price-check {
	cursor: pointer;
	position: relative;
}
#house .price-check input {
	display: none;
}
#house .price-inner {
	background: #fff;
	border: 2px solid var(--h-border);
	padding: 15px 10px;
	border-radius: 20px;
	text-align: center;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}
#house .price-check input:checked + .price-inner {
	border-color: var(--h-orange);
	background: #fffbeb;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(245, 158, 11, 0.15);
}
#house .check-mark {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 26px;
	height: 26px;
	background: var(--h-orange);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	transform: scale(0);
	transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	z-index: 2;
}
#house .price-check input:checked + .price-inner .check-mark {
	transform: scale(1);
}
#house .period {
	font-size: 0.7rem;
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 0.5px;
	color: var(--h-text);
	margin-bottom: 4px;
}
#house .cost {
	display: block;
	font-size: 1.2rem;
	font-weight: 900;
	color: var(--h-dark);
}
#house .btn-house-order {
	width: 100%;
	background: var(--h-orange);
	color: #fff;
	border: none;
	padding: 18px;
	border-radius: 50px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
	transition: 0.3s;
}
#house .btn-house-order:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
}
#house .house-slider img {
	border-radius: 25px;
	height: 450px;
	object-fit: cover;
	width: 100%;
}

@media (max-width: 991px) {
#house .house-card {
	padding: 30px;
}
#house .house-slider img {
	height: 350px;
}
}

@media (max-width: 576px) {
#house .house-title {
	font-size: 1.8rem;
}
#house .price-grid-scroll {
	grid-template-columns: 1fr 1fr;
}
#house .house-slider img {
	height: 280px;
}
}
 @keyframes price-pulse-click {
 0% {
transform: scale(1) translateY(-3px);
}
 50% {
transform: scale(0.95) translateY(0);
}
 100% {
transform: scale(1) translateY(-3px);
}
}
.pulse-effect {
	animation: price-pulse-click 0.4s ease;
}
.house-gallery {
	position: relative;
}
.house-gallery .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 10;
}
.house-gallery .nav-btn {
	pointer-events: auto;
	background: rgba(255, 255, 255, 0.9);
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: var(--h-dark);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	cursor: pointer;
	transition: 0.3s;
	margin: 0 15px;
}
.house-gallery .nav-btn:hover {
	background: var(--h-orange);
	color: #fff;
}
.house-gallery .owl-dots {
	position: absolute;
	bottom: 20px;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 8px;
}
.house-gallery .owl-dot span {
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, 0.5) !important;
	display: block;
	border-radius: 50%;
	transition: 0.3s;
}
.house-gallery .owl-dot.active span {
	background: #fff !important;
	width: 25px;
	border-radius: 10px;
}
/*
* ----------------------------------------------------------------------------------------
* Footer
* ----------------------------------------------------------------------------------------
*/
footer {
  /* Переменные для удобства правки прямо здесь */
  --f-dark: #451a03;   /* шоколад */
  --f-accent: #f59e0b; /* оранжевый */
  --f-cream: #fffcf8;  /* кремовый текст */
  --f-muted: #a8a29e;  /* серый текст */
  
  background-color: var(--f-dark);
  color: var(--f-cream);
  border-top: 2px solid var(--f-accent);
  padding: 0; /* обнуляем, так как внутренние отступы заданы в блоках */
}

/* Левый блок: Название и слоган */
footer .f-brand {
  font-weight: 800;
  color: var(--f-accent);
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 1px;
  line-height: 1.2;
}

footer .f-tagline {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.4;
  margin-top: 5px;
}

/* Центральный блок: Контакты одного размера */
footer .f-center-contacts {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

footer .f-contact-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--f-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer .f-contact-link:hover {
  color: var(--f-accent);
}

/* Правый блок: Соцсети */
footer .f-socials a {
  color: var(--f-cream);
  font-size: 1.5rem;
  margin-left: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

footer .f-socials a:hover {
  color: var(--f-accent);
  transform: translateY(-2px);
}

/* Нижняя линия (подвал футера) */
footer .f-bottom-line {
  border-top: 1px solid rgba(255, 252, 248, 0.1);
  background: rgba(0, 0, 0, 0.1); /* чуть темнее основной части */
}

footer .f-copy, 
footer .f-dev {
  font-size: 0.75rem;
  color: var(--f-muted);
}

footer .f-dev a {
  color: var(--f-accent);
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.3s;
}

footer .f-dev a:hover {
  opacity: 0.8;
}

/* Счетчик */
footer .f-counter {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 12px;
  border-radius: 4px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  color: var(--f-accent);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 767px) {
  footer {
    text-align: center;
  }
  
  footer .f-brand, 
  footer .f-tagline,
  footer .f-socials {
    text-align: center;
  }

  footer .f-socials a {
    margin: 0 10px;
    margin-top: 15px;
  }

  footer .f-bottom-line .text-start,
  footer .f-bottom-line .text-end {
    text-align: center !important;
    margin-top: 10px;
  }
}
