/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: #0F1623;
    color: #F0EBE1;
    font-weight: 300;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.wrapper {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 600;
    color: #DFC08A;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 12px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #C8A96E, transparent);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(15, 22, 35, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 169, 110, 0.12);
    transition: all 0.3s ease;
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 22px;
    font-weight: 600;
    color: #F0EBE1;
    line-height: 1.2;
}
.logo span {
    color: #C8A96E;
    font-weight: 400;
}
.header__list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.header__link {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    transition: color 0.3s;
    font-family: Arial, sans-serif;
    letter-spacing: 0.3px;
}
.header__link:hover {
    color: #C8A96E;
}
.header__link--btn {
    background: linear-gradient(135deg, #C8A96E, #B8944A);
    color: #0F1623 !important;
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.header__link--btn:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 20px rgba(200, 169, 110, 0.3);
    color: #0F1623 !important;
}
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.header__burger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #F0EBE1;
    transition: 0.3s;
}

/* ===== INTRO ===== */
.intro {
    min-height: 100vh;
    background: linear-gradient(135deg, #0F1623 0%, #1A2438 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}
.intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.intro__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}
.intro__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    max-width: 420px;
}
.intro__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 32px;
    margin-bottom: 20px;
}
.intro__addr, .intro__phone {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.intro__phone {
    color: #C8A96E;
    font-weight: 600;
    font-size: 20px;
}
.weather {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(200,169,110,0.15);
    border-radius: 40px;
    padding: 8px 22px 8px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    backdrop-filter: blur(4px);
    color: #F0EBE1;
}
.weather__label { opacity: 0.6; font-family: Arial, sans-serif; }
.weather__value { font-weight: 600; color: #DFC08A; }

/* ===== FORM ===== */
.form {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(200,169,110,0.15);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.form__title {
    font-size: 26px;
    font-weight: 600;
    color: #DFC08A;
    margin-bottom: 6px;
}
.form__subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
    font-family: Arial, sans-serif;
}
.form__input {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: #F0EBE1;
    font-size: 16px;
    font-family: Arial, sans-serif;
    transition: 0.3s;
}
.form__input:focus {
    border-color: #C8A96E;
    outline: none;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 3px rgba(200,169,110,0.08);
}
.form__input::placeholder { color: rgba(255,255,255,0.3); }
.form__btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #C8A96E, #B8944A);
    border: none;
    border-radius: 12px;
    color: #0F1623;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: Arial, sans-serif;
}
.form__btn:hover {
    transform: scale(1.01);
    box-shadow: 0 6px 30px rgba(200,169,110,0.25);
}
.form__policy {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    margin-top: 16px;
    text-align: center;
    font-family: Arial, sans-serif;
    line-height: 1.5;
}
.form__policy a { color: #C8A96E; }
.form__policy a:hover { text-decoration: underline; }

/* ===== SERVICES ===== */
.services {
    padding: 80px 0;
    background: #0F1623;
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}
.service {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,169,110,0.06);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: 0.3s;
}
.service:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(200,169,110,0.15);
    transform: translateY(-4px);
}
.service__icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}
.service__title {
    font-size: 18px;
    font-weight: 600;
    color: #DFC08A;
    margin-bottom: 8px;
}
.service__desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
    font-family: Arial, sans-serif;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 60px 0 80px;
    background: #131C2B;
}
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery__item {
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    background: #1A2438;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.1);
    font-size: 14px;
}

/* ===== PLACES ===== */
.places {
    padding: 80px 0;
    background: #0F1623;
}
.places__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}
.place {
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(200,169,110,0.06);
    transition: 0.3s;
}
.place:hover {
    border-color: rgba(200,169,110,0.2);
    transform: translateY(-4px);
}
.place__img {
    height: 160px;
    background: #1A2438;
    border-radius: 12px 12px 0 0;
}
.place__title {
    font-size: 16px;
    font-weight: 500;
    padding: 14px 16px 4px;
    color: #DFC08A;
}
.place__link {
    display: inline-block;
    padding: 0 16px 16px;
    font-size: 13px;
    color: #C8A96E;
    font-family: Arial, sans-serif;
    transition: 0.2s;
}
.place__link:hover { opacity: 0.7; }

/* ===== MAP ===== */
.map {
    padding: 60px 0 0;
    background: #131C2B;
}
.map__container {
    margin-top: 30px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(200,169,110,0.06);
}
.map__container iframe { display: block; width: 100%; height: 450px; border: 0; }

/* ===== FOOTER ===== */
.footer {
    padding: 40px 0 30px;
    background: #0A0F18;
    border-top: 1px solid rgba(200,169,110,0.06);
}
.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer__name {
    font-size: 20px;
    font-weight: 600;
    color: #DFC08A;
}
.footer__addr {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    font-family: Arial, sans-serif;
}
.footer__phone {
    font-size: 18px;
    font-weight: 600;
    color: #C8A96E;
}
.footer__copy {
    font-size: 13px;
    color: rgba(255,255,255,0.15);
    font-family: Arial, sans-serif;
}

/* ===== BURGER ===== */
@media (max-width: 820px) {
    .header__burger { display: flex; }
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #0F1623;
        border-left: 1px solid rgba(200,169,110,0.1);
        padding: 80px 30px 30px;
        transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        display: flex;
        flex-direction: column;
    }
    .header__nav.open { right: 0; }
    .header__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .header__link { font-size: 18px; }
    .header__link--btn { padding: 10px 30px; }

    .intro__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .intro__subtitle { margin: 0 auto 20px; }
    .intro__contacts { justify-content: center; }
    .weather { justify-content: center; }

    .services__grid { grid-template-columns: 1fr 1fr; }
    .gallery__grid { grid-template-columns: 1fr 1fr; }
    .footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 500px) {
    .services__grid { grid-template-columns: 1fr; }
    .gallery__grid { grid-template-columns: 1fr; }
    .places__grid { grid-template-columns: 1fr 1fr; }
    .form { padding: 24px 18px; }
}