* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1A1A1A;
    background-color: #FFFFFF;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

:root {
    --honey: #FF7A00;
    --dark: #1A1A1A;
    --light: #FFFFFF;
    --gray-bg: #F9F9F9;
    --gray-border: #E0E0E0;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

h2 {
    font-size: 32px;
    margin-bottom: 32px;
    border-left: 6px solid var(--honey);
    padding-left: 20px;
}

@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
}

.btn {
    display: inline-block;
    background-color: var(--honey);
    color: var(--light);
    font-weight: 700;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    text-align: center;
}

.btn:hover {
    background-color: #E06D00;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.btn-full {
    width: 100%;
}

.header {
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-border);
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--dark);
    text-decoration: none;
}

.logo span {
    color: var(--honey);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}

.nav a:hover {
    color: var(--honey);
}

.phone {
    font-weight: 700;
    font-size: 20px;
    color: var(--dark);
    text-decoration: none;
}

@media (max-width: 768px) {
    .header-inner { flex-direction: column; }
    .nav { gap: 20px; }
}

.hero {
    padding: 80px 0;
    text-align: center;
    background-color: var(--gray-bg);
}

.hero p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #333;
}

.section {
    padding: 60px 0;
    border-bottom: 1px solid var(--gray-border);
}

.about-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.about-text {
    flex: 2;
}

.about-name {
    font-size: 18px;
    margin-bottom: 15px;
}

.about-cert {
    margin-top: 20px;
}

.about-photo {
    text-align: center;
}

.about-photo img {
    max-width: 80%;
    height: auto;
    display: inline-block;
}

.photo-placeholder {
    background: #E0E0E0;
    border-radius: 20px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.services-table th, .services-table td {
    border: 1px solid var(--gray-border);
    padding: 15px;
    text-align: left;
}

.services-table th {
    background-color: var(--gray-bg);
    font-weight: 700;
}

.service-btn {
    background-color: var(--honey);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.feature-item {
    background: var(--gray-bg);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-placeholder {
    height: 200px;
    background: #FFE0B5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #885A00;
}

.gallery-note {
    margin-top: 15px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray-border);
    padding-bottom: 15px;
}

.faq-question {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .contacts-grid { grid-template-columns: 1fr; }
}

.form-group {
    margin-bottom: 20px;
}

input, select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    font-family: inherit;
}

.form-note {
    font-size: 12px;
    margin-top: 10px;
    color: #666;
}

.form-message {
    margin-top: 15px;
}

.footer {
    background-color: var(--dark);
    color: #ccc;
    padding: 40px 0;
    text-align: center;
}

.footer a {
    color: var(--honey);
    text-decoration: none;
}

.footer-link {
    margin-top: 10px;
}

/* Блокировка прокрутки, когда открыта модалка */
body.modal-open {
    overflow: hidden;
}

/* Галерея — правильное отображение картинок */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}