* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Inter', sans-serif;
	background-color: #F5F2EC;
	color: #3A2416;
	scroll-behavior: smooth;
}
:root {
	--dark-brown: #3A2416;
	--wood: #5C3B25;
	--dark-green: #28412B;
	--light-beige: #F5F2EC;
	--gold: #B08A57;
	--gold-hover: #9c7948;
	--shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
	--shadow-md: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
	--radius-card: 12px;
}
h1, h2, h3, h4, .logo-font, .nav-links a, .hero-slogan {
	font-family: 'Playfair Display', serif;
}
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}
section {
	padding: 80px 0;
}
.sticky-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(245, 242, 236, 0.96);
	backdrop-filter: blur(12px);
	box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 4px 12px rgba(0,0,0,0.02);
	transition: all 0.3s ease;
}
.header-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	max-width: 1400px;
	margin: 0 auto;
	flex-wrap: wrap;
	gap: 16px;
}
.logo-area {
	display: flex;
	align-items: center;
	gap: 12px;
}
.logo-square {
	width: 64px;
	height: 64px;
	border-radius: 14px;
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	flex-shrink: 0;
}
.logo-square img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.logo-text {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: 1.5rem;
	letter-spacing: -0.02em;
	color: var(--dark-brown);
}
.logo-text span {
	color: var(--gold);
}
.contact-row {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}
.phones {
	display: flex;
	gap: 16px;
	font-weight: 500;
}
.phones a {
	text-decoration: none;
	color: var(--dark-brown);
	font-size: 0.95rem;
	transition: color 0.2s;
	font-family: 'Inter', sans-serif;
}
.phones a:hover {
	color: var(--gold);
}
.work-hours {
	font-size: 0.9rem;
	color: var(--wood);
	background: rgba(92,59,37,0.1);
	padding: 6px 12px;
	border-radius: 40px;
}
.btn-gold {
	background-color: var(--gold);
	color: #fff;
	border: none;
	padding: 10px 26px;
	border-radius: 40px;
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 2px 6px rgba(176,138,87,0.2);
	font-family: 'Inter', sans-serif;
}
.btn-gold:hover {
	background-color: var(--gold-hover);
	transform: scale(1.02);
	box-shadow: 0 8px 20px rgba(176,138,87,0.3);
}
.nav-bar {
	background: white;
	border-top: 1px solid rgba(0,0,0,0.03);
	border-bottom: 1px solid rgba(0,0,0,0.03);
	padding: 0 24px;
}
.nav-links {
	display: flex;
	justify-content: center;
	gap: 48px;
	list-style: none;
	padding: 16px 0;
	margin: 0;
}
.nav-links a {
	text-decoration: none;
	font-weight: 500;
	color: var(--dark-brown);
	font-size: 1rem;
	transition: 0.2s;
	letter-spacing: 0.3px;
}
.nav-links a:hover {
	color: var(--gold);
}
.hamburger {
	display: none;
	font-size: 28px;
	background: none;
	border: none;
	color: var(--dark-brown);
	cursor: pointer;
	padding: 8px;
}
.mobile-menu {
	display: none;
	flex-direction: column;
	background: white;
	padding: 20px;
	gap: 18px;
	border-top: 1px solid #e9e0d4;
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.mobile-menu a {
	text-decoration: none;
	font-weight: 500;
	color: var(--dark-brown);
	font-size: 1.1rem;
	padding: 8px 0;
	border-bottom: 1px solid #f0eae2;
}
.hero {
	background-image: linear-gradient(rgba(40, 65, 43, 0.55), rgba(58, 36, 22, 0.6)), url('Tree-Surgeon-in-Lewes.jpg');
	background-size: cover;
	background-position: center 30%;
	height: 85vh;
	min-height: 560px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
}
.hero-content {
	max-width: 800px;
	padding: 0 20px;
}
.hero-slogan {
	font-size: 3.8rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	text-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.hero-sub {
	font-size: 1.3rem;
	margin-top: 20px;
	font-weight: 400;
	opacity: 0.95;
	font-family: 'Inter', sans-serif;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 32px;
	margin-top: 48px;
}
.service-card {
	background: white;
	border-radius: var(--radius-card);
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
	box-shadow: var(--shadow-sm);
	cursor: pointer;
	position: relative;
}
.service-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: var(--shadow-md);
}
.card-img {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}
.card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease, filter 0.3s;
	display: block;
}
.service-card:hover .card-img img {
	transform: scale(1.05);
	filter: brightness(0.65);
}
.card-title {
	text-align: center;
	padding: 18px 12px;
	font-weight: 700;
	font-size: 1.1rem;
	background: white;
	color: var(--dark-brown);
	font-family: 'Playfair Display', serif;
	border-top: 1px solid rgba(0,0,0,0.03);
	letter-spacing: 0.3px;
}
.card-overlay-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: var(--gold);
	color: white;
	padding: 8px 20px;
	border-radius: 40px;
	font-weight: 600;
	font-size: 0.85rem;
	opacity: 0;
	transition: opacity 0.3s;
	pointer-events: none;
	white-space: nowrap;
	font-family: 'Inter', sans-serif;
	z-index: 3;
}
.service-card:hover .card-overlay-btn {
	opacity: 1;
}
.section-title {
	font-family: 'Playfair Display', serif;
	font-size: 2.4rem;
	color: var(--dark-brown);
	margin-bottom: 24px;
	position: relative;
	display: inline-block;
}
.section-title:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--gold);
}
.footer {
	background-color: #2b2a27;
	background: linear-gradient(135deg, #2A241E 0%, #1F1A15 100%);
	color: #e2dcd3;
	padding: 48px 0 32px;
	margin-top: 40px;
}
.footer-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
}
.footer-col {
	flex: 1;
	min-width: 180px;
}
.footer-col h4 {
	font-family: 'Playfair Display', serif;
	color: var(--gold);
	margin-bottom: 18px;
	font-size: 1.2rem;
}
.footer-col ul {
	list-style: none;
}
.footer-col ul li {
	margin-bottom: 10px;
}
.footer-col a {
	text-decoration: none;
	color: #cfc7bc;
	transition: color 0.2s;
}
.footer-col a:hover {
	color: var(--gold);
}
.footer-contacts p {
	margin-bottom: 8px;
}
.footer-copyright {
	text-align: center;
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,0.1);
	font-size: 0.8rem;
}
/* Модальное окно */
.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	backdrop-filter: blur(4px);
	z-index: 9999;
	justify-content: center;
	align-items: center;
	padding: 20px;
}
.modal-overlay.active {
	display: flex;
}
.modal-window {
	background: #fff;
	max-width: 540px;
	width: 100%;
	border-radius: 28px;
	padding: 32px 30px 30px;
	box-shadow: 0 30px 60px rgba(0,0,0,0.3);
	position: relative;
	max-height: 90vh;
	overflow-y: auto;
}
.modal-close {
	position: absolute;
	top: 16px;
	right: 20px;
	font-size: 28px;
	cursor: pointer;
	color: #5a4a3a;
	transition: 0.2s;
	background: none;
	border: none;
	line-height: 1;
}
.modal-close:hover {
	color: #000;
	transform: rotate(90deg);
}
.modal-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	margin-bottom: 22px;
	color: var(--dark-brown);
}
.modal-form label {
	font-weight: 500;
	font-size: 0.95rem;
	display: block;
	margin-bottom: 4px;
	color: #2d241e;
}
.modal-form .required-star {
	color: #b22222;
	margin-left: 2px;
}
.modal-form input,
.modal-form select,
.modal-form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d9d0c5;
	border-radius: 14px;
	font-family: 'Inter', sans-serif;
	font-size: 0.95rem;
	background: #fcfaf7;
	transition: 0.2s;
	margin-bottom: 16px;
}
.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(176,138,87,0.2);
}
.modal-form textarea {
	min-height: 80px;
	resize: vertical;
}
.modal-form .file-label {
	display: block;
	background: #f1ede7;
	padding: 12px 16px;
	border-radius: 40px;
	cursor: pointer;
	font-weight: 500;
	margin-bottom: 16px;
	border: 1px dashed #b5a798;
	transition: 0.2s;
	text-align: center;
}
.modal-form .file-label:hover {
	background: #e9e1d6;
	border-color: var(--gold);
}
.modal-form .file-label i {
	margin-right: 8px;
}
.modal-form input[type="file"] {
	display: none;
}
.modal-form .btn-submit {
	background: var(--gold);
	color: white;
	border: none;
	padding: 14px 20px;
	border-radius: 40px;
	font-weight: 600;
	font-size: 1rem;
	width: 100%;
	cursor: pointer;
	transition: 0.2s;
	margin-top: 6px;
}
.modal-form .btn-submit:hover {
	background: var(--gold-hover);
	transform: scale(1.01);
}
.modal-form .file-name {
	font-size: 0.85rem;
	color: #4d3e2f;
	margin-top: -8px;
	margin-bottom: 12px;
}

@media (max-width: 860px) {
	.header-main { padding: 12px 20px; }
	.contact-row .phones { gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
	.hero-slogan { font-size: 2.5rem; }
	.hero-sub { font-size: 1rem; }
	.section-title { font-size: 2rem; }
	.nav-links { display: none; }
	.hamburger { display: block; }
	.nav-bar .container { display: flex; justify-content: space-between; align-items: center; padding: 8px 20px; }
	.logo-area .logo-text { font-size: 1.2rem; }
	.logo-square { width: 48px; height: 48px; }
}
@media (max-width: 640px) {
	.contact-row { width: 100%; justify-content: space-between; }
	.phones { font-size: 0.8rem; }
	.btn-gold { padding: 8px 18px; }
	.services-grid { gap: 20px; }
	.hero { height: 70vh; min-height: 480px; }
	.modal-window { padding: 24px 18px; }
}

/* hero внутренней страницы */
.page-hero {
	background: linear-gradient(135deg, #2d2a27 0%, #3A2416 100%);
	padding: 60px 0 50px;
	color: white;
	margin-bottom: 40px;
	border-bottom: 4px solid var(--gold);
}
.page-hero h1 {
	font-size: 2.8rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}
.page-hero .breadcrumb {
	color: #c8c2b8;
	font-size: 0.9rem;
	margin-top: 12px;
}
.page-hero .breadcrumb a {
	color: var(--gold);
	text-decoration: none;
}
.page-hero .breadcrumb a:hover {
	text-decoration: underline;
}

/* контент с продающим текстом */
.service-content {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 60px;
}
.service-text {
	flex: 2;
	min-width: 320px;
}
.service-text h2 {
	font-family: 'Playfair Display', serif;
	color: var(--dark-brown);
	font-size: 2rem;
	margin-top: 30px;
	margin-bottom: 16px;
	border-left: 5px solid var(--gold);
	padding-left: 20px;
}
.service-text h2:first-of-type {
	margin-top: 0;
}
.service-text p {
	line-height: 1.8;
	margin-bottom: 20px;
	font-size: 1.05rem;
	color: #2e2a26;
}
.service-text ul {
	list-style: none;
	padding: 0;
}
.service-text ul li {
	margin-bottom: 14px;
	padding-left: 28px;
	position: relative;
	font-weight: 500;
}
.service-text ul li::before {
	content: "✓";
	color: var(--gold);
	font-weight: 700;
	position: absolute;
	left: 0;
	font-size: 1.2rem;
}
.highlight-box {
	background: white;
	border-radius: 24px;
	padding: 30px 32px;
	box-shadow: var(--shadow-sm);
	border-left: 6px solid var(--gold);
	margin: 30px 0;
}
.highlight-box strong {
	color: var(--dark-brown);
}

.service-sidebar {
	flex: 1.2;
	min-width: 280px;
}
.sidebar-card {
	background: white;
	border-radius: 24px;
	padding: 30px;
	box-shadow: var(--shadow-sm);
	margin-bottom: 30px;
}
.sidebar-card h3 {
	font-family: 'Playfair Display', serif;
	color: var(--dark-brown);
	margin-bottom: 18px;
	border-bottom: 2px solid #eee;
	padding-bottom: 12px;
}
.sidebar-card ul {
	list-style: none;
}
.sidebar-card ul li {
	padding: 8px 0;
	border-bottom: 1px solid #f2ede6;
}
.sidebar-card .btn-gold {
	width: 100%;
	margin-top: 12px;
}
.price-tag {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--gold);
	font-family: 'Playfair Display', serif;
}

.cta-section {
	background: #2d2a27;
	background-image: radial-gradient(circle at 20% 30%, #3f372f 0%, #1f1a15 90%);
	padding: 60px 0;
	border-radius: 40px;
	margin: 40px 0 60px;
	color: white;
	text-align: center;
}
.cta-section h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.2rem;
	margin-bottom: 20px;
}
.cta-section .btn-gold {
	font-size: 1.1rem;
	padding: 14px 44px;
}
