@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    src: local("Inter"), local("Inter-Regular");
}

:root {
    --ink: #1f2328;
    --muted: #5a5f66;
    --accent: #7b5e3b;
    --accent-strong: #5a4328;
    --bg: #f6f1ea;
    --surface: #ffffff;
    --sand: #e9decf;
    --forest: #23312b;
    --line: #ded4c8;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
}

a {
    color: var(--accent-strong);
    text-decoration: none;
}

a.cta-link {
    border-bottom: 1px solid var(--accent-strong);
    padding-bottom: 2px;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.image-frame {
    background-color: var(--sand);
    border-radius: 16px;
    overflow: hidden;
}

.page {
    overflow-x: hidden;
}

.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 8vw;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.brand {
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 18px;
    font-size: 0.95rem;
}

.nav-ad {
    font-size: 0.85rem;
    color: var(--muted);
    max-width: 260px;
    text-align: right;
}

.hero {
    display: flex;
    min-height: 65vh;
    background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1400&q=80");
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(35, 23, 12, 0.35);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 8vw;
    max-width: 680px;
    color: #fefaf5;
}

.hero h1 {
    font-size: 2.6rem;
    margin: 0 0 16px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.primary-btn {
    background: var(--accent);
    color: #fff;
}

.secondary-btn {
    background: #fff;
    color: var(--accent-strong);
}

.ghost-btn {
    background: transparent;
    color: var(--accent-strong);
    border: 1px solid var(--accent-strong);
}

.primary-btn:hover,
.secondary-btn:hover,
.ghost-btn:hover {
    transform: translateY(-1px);
}

.asym-wrap {
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding: 70px 8vw;
}

.asym-row {
    display: flex;
    gap: 32px;
    align-items: center;
}

.asym-row.reverse {
    flex-direction: row-reverse;
}

.asym-text {
    flex: 1.1;
}

.asym-card {
    flex: 0.9;
    background: var(--surface);
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(20, 16, 12, 0.08);
}

.asym-card img {
    width: 100%;
    height: 240px;
}

.panel-accent {
    background: var(--forest);
    color: #f1efe9;
    padding: 60px 8vw;
}

.panel-accent h2 {
    margin-top: 0;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.service-card {
    flex: 1 1 260px;
    background: var(--surface);
    border-radius: 18px;
    padding: 20px;
    border: 1px solid var(--line);
}

.service-card img {
    width: 100%;
    height: 180px;
}

.service-card .image-frame {
    margin-bottom: 16px;
}

.service-price {
    font-weight: 700;
    color: var(--accent-strong);
}

.layered {
    position: relative;
    padding: 70px 8vw;
}

.layered::before {
    content: "";
    position: absolute;
    inset: 12px 8vw 12px 30%;
    background: var(--sand);
    z-index: 0;
    border-radius: 32px;
}

.layered-content {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 32px;
    align-items: center;
}

.layered-content img {
    width: 45%;
    height: 320px;
}

.form-section {
    padding: 70px 8vw 90px;
    background: var(--surface);
}

.form-wrap {
    display: flex;
    gap: 36px;
}

.form-panel {
    flex: 1;
    background: var(--bg);
    padding: 30px;
    border-radius: 18px;
}

.form-panel label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 16px;
    border-radius: 10px;
    border: 1px solid var(--line);
    font-size: 1rem;
    background: #fff;
}

.form-note {
    color: var(--muted);
    font-size: 0.9rem;
}

.testimonial-strip {
    display: flex;
    gap: 18px;
    margin-top: 22px;
}

.testimonial {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    flex: 1;
    border: 1px solid var(--line);
}

.sticky-cta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: var(--accent-strong);
    color: #fff;
    padding: 14px 18px;
    border-radius: 999px;
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    z-index: 10;
}

.sticky-cta button {
    background: #fff;
    color: var(--accent-strong);
    border: none;
    border-radius: 999px;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 600;
}

.footer {
    background: #161a17;
    color: #d5d0c7;
    padding: 50px 8vw;
}

.footer a {
    color: #d5d0c7;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-block {
    flex: 1 1 200px;
}

.cookie-banner {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 16px;
    border-radius: 16px;
    max-width: 320px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
    z-index: 12;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.cookie-actions button {
    flex: 1;
    border: none;
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-accept {
    background: var(--accent);
    color: #fff;
}

.cookie-reject {
    background: #e9e3db;
    color: var(--ink);
}

.simple-hero {
    padding: 60px 8vw 30px;
}

.simple-hero h1 {
    margin-bottom: 10px;
}

.info-block {
    padding: 30px 8vw 70px;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.info-card {
    flex: 1 1 260px;
    background: var(--surface);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--line);
}

.visual-divider {
    height: 180px;
    background-image: url("https://images.unsplash.com/photo-1519710164239-da123dc03ef4?w=1400&q=80");
    background-size: cover;
    background-position: center;
}

.visual-divider::after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
}

@media (max-width: 920px) {
    .asym-row,
    .layered-content,
    .form-wrap {
        flex-direction: column;
    }

    .layered::before {
        inset: 12px 8vw;
    }

    .layered-content img {
        width: 100%;
    }

    .nav-links {
        display: none;
    }
}
