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

:root {
    --bg: #faf8f5;
    --bg-soft: #f3ede6;
    --white: #ffffff;
    --orange: #e8521a;
    --orange-lt: #fef0e9;
    --text: #1e1410;
    --muted: #6b5a4e;
    --border: rgba(0, 0, 0, 0.08);
    --radius: 14px;
    --shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
    --trans: 0.25s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 15px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    padding: 4px 0;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

header .container,
footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand-mark,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-logo {
padding: 5px 0px;
    height: 62px;
    width: auto;
    object-fit: contain;
padding: 5px 0px;
}

.brand-word {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-weight: 700;
    color: var(--orange);
}

.brand-word span:first-child {
    font-size: 1.08rem;
}

.brand-word span:last-child {
    margin-top: 3px;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8a6d16;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--orange);
    font-size: 0.86rem;
    transition: var(--trans);
}

.social-links a:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

nav ul {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
}

nav a {
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--muted);
    transition: var(--trans);
}

nav a:hover,
nav a.active {
    color: var(--text);
}

.nav-cta,
.btn-primary {
    background: var(--orange);
    color: #fff !important;
    box-shadow: 0 3px 14px rgba(232, 82, 26, 0.28);
}

.nav-cta {
    padding: 8px 18px;
    border-radius: 7px;
    font-weight: 600 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 3px;
}

.page-hero {
    padding: 130px 0 58px;
    background: var(--bg-soft);
}

.page-hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 42px;
    align-items: center;
}

.section {
    padding: 68px 0;
}

.section-alt {
    background: var(--bg-soft);
}

.section-label {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 14px;
    border-radius: 100px;
    background: var(--orange-lt);
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    max-width: 760px;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.08;
}

h1 span,
h2 span {
    color: var(--orange);
}

h2 {
    margin-bottom: 12px;
    font-size: clamp(1.55rem, 3.4vw, 2.35rem);
    line-height: 1.18;
}

h3 {
    margin-bottom: 7px;
    font-size: 1.04rem;
}

.sub,
.lead {
    max-width: 680px;
    color: var(--muted);
}

.lead {
    margin-top: 16px;
    font-size: 1.02rem;
}

.hero-panel,
.card,
.info-box,
.contact-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-panel {
    padding: 24px;
}

.hero-panel img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-weight: 700;
    transition: var(--trans);
}

.btn-outline {
    background: transparent;
    color: var(--text);
}

.btn:hover {
    transform: translateY(-1px);
}

.grid {
    display: grid;
    gap: 20px;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    padding: 24px;
}

.icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--orange-lt);
    color: var(--orange);
}

.list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.list li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
}

.list i {
    margin-top: 5px;
    color: var(--orange);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.gallery-card {
    overflow: hidden;
}

.gallery-media {
    height: 340px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.gallery-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-card .card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.legal-block {
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.legal-block + .legal-block {
    margin-top: 18px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
}

.contact-panel {
    padding: 28px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fffaf6;
    color: var(--text);
    font-weight: 700;
}

.contact-link + .contact-link {
    margin-top: 12px;
}

.contact-link i {
    color: var(--orange);
}

.price-box {
    padding: 30px;
    text-align: center;
}

.price {
    margin: 8px 0;
    color: var(--orange);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
}

footer {
    padding: 22px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.footer-logo {
    height: 34px;
}

footer p,
.footer-addr,
.card p,
.legal-block p {
    color: var(--muted);
}

.footer-addr {
    text-align: right;
    font-size: 0.82rem;
}

@media (max-width: 980px) {
    nav ul {
        gap: 12px;
    }

    nav a {
        font-size: 0.78rem;
    }
}

@media (max-width: 760px) {
    nav ul {
        display: none;
        position: absolute;
        top: 62px;
        left: 0;
        width: 100%;
        flex-direction: column;
        padding: 22px 20px;
        background: rgba(250, 248, 245, 0.98);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    nav ul.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .header-actions {
        gap: 8px;
    }

    .social-links a {
        width: 30px;
        height: 30px;
        font-size: 0.78rem;
    }

    .brand-logo {
        height: 50px;
padding: 5px 0px;
    }

    .brand-word span:first-child {
        font-size: 0.92rem;
    }

    .brand-word span:last-child {
        font-size: 0.6rem;
    }

    .page-hero .container,
    .grid-2,
    .grid-3,
    .gallery-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding-top: 110px;
    }

    .gallery-media {
        height: 260px;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-addr {
        text-align: center;
    }
}
