:root {
    --bg: #fdfbf7;
    --bg-alt: #f4eee4;
    --text: #2b2723;
    --muted: #6f675e;
    --accent: #c1442e;
    --accent-dark: #a03723;
    --card: #ffffff;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(43, 39, 35, .10);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: Georgia, 'Times New Roman', serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 780px; }

h1, h2 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 18px; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 20px; }
h2::after {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    margin-top: 10px;
    border-radius: 2px;
    background: var(--accent);
}

p { margin-bottom: 14px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(253, 251, 247, .92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(43, 39, 35, .08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
}

.site-nav { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.site-nav a { color: var(--muted); text-decoration: none; font-size: .98rem; }
.site-nav a:hover { color: var(--accent); }
.site-nav .nav-cta {
    color: #fff;
    background: var(--accent);
    padding: 8px 18px;
    border-radius: 999px;
}
.site-nav .nav-cta:hover { background: var(--accent-dark); color: #fff; }

.hero { padding: 70px 0 60px; }
.hero-inner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 48px;
    align-items: center;
}
.hero .lead { font-size: 1.15rem; color: var(--muted); margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.btn {
    display: inline-block;
    padding: 13px 28px;
    border: 2px solid var(--accent);
    border-radius: 999px;
    font: inherit;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-ghost { background: transparent; color: var(--accent); }
.btn-ghost:hover { background: var(--accent); color: #fff; }

.section { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }
.section-subtitle { color: var(--muted); margin-top: -8px; margin-bottom: 28px; }

.split {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 48px;
    align-items: center;
}
.split-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.why-list { list-style: none; display: grid; gap: 14px; }
.why-list li {
    background: var(--card);
    border-radius: var(--radius);
    padding: 16px 20px 16px 52px;
    position: relative;
    box-shadow: 0 4px 14px rgba(43, 39, 35, .06);
}
.why-list li::before {
    content: "✓";
    position: absolute;
    left: 20px;
    top: 15px;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}
.gallery-item {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(43, 39, 35, .08);
}
.gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform .25s;
}
.gallery-item:hover img { transform: scale(1.05); }

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

.contact-form {
    background: var(--card);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px;
    margin-bottom: 26px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 6px; font-size: .95rem; color: var(--muted); }
.contact-form input,
.contact-form textarea {
    font: inherit;
    color: var(--text);
    padding: 11px 14px;
    border: 1px solid rgba(43, 39, 35, .18);
    border-radius: 10px;
    background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(193, 68, 46, .15);
}
.contact-form .btn { justify-self: start; }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; border: 0; padding: 0; }

.alert { border-radius: 10px; padding: 14px 18px; margin-bottom: 20px; }
.alert ul { list-style: none; }
.alert-success { background: #e7f4e4; color: #245c1e; border: 1px solid #b9dcb2; }
.alert-error { background: #fbe9e5; color: #8c2717; border: 1px solid #eec4bb; }

.contacts-line {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 1.02rem;
}

.site-footer {
    background: #2b2723;
    color: #cfc8bf;
    padding: 30px 0;
    text-align: center;
    font-size: .95rem;
}
.site-footer p { margin-bottom: 6px; }
.footer-note { font-size: .82rem; color: #8c8478; }

.lightbox[hidden] { display: none; }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(20, 17, 14, .92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.lightbox img {
    max-width: min(92vw, 1100px);
    max-height: 82vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}
.lightbox-caption { color: #e8e2d9; margin-top: 14px; }
.lightbox-close {
    position: absolute;
    top: 18px;
    right: 26px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.4rem;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 800px) {
    .hero-inner, .split { grid-template-columns: 1fr; gap: 28px; }
    .hero { padding: 40px 0 30px; }
    .form-row { grid-template-columns: 1fr; }
    .site-nav { gap: 14px; }
}
