body.site { background: #f7f7f7; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(253, 253, 253, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
}
.site-header .brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-text);
    text-decoration: none;
}
.site-header .brand-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: var(--color-menu-bg);
    flex: 0 0 auto;
}
.site-header .brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.site-nav a:not(.btn) {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
}
.site-nav a:not(.btn):hover { color: var(--color-menu-bg); }
.site-nav a.active { font-weight: 700; color: var(--color-menu-bg); }
.site-nav .btn { margin-top: 0; }

.site-main { flex: 1; }

.site-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}
.site-section--muted { background: #ececec; padding: 4rem 0; }
.site-section--muted > div { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; }

.site-section h2 { margin-top: 0; }

.hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 1.5rem 3rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}
.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-menu-bg);
    margin-bottom: 0.75rem;
}
.hero h1 {
    font-size: 2.4rem;
    line-height: 1.15;
    margin: 0 0 1rem;
}
.hero p { max-width: 44ch; color: #444; }
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.hero-actions .btn { margin-top: 0; }
.hero figure { margin: 0; }
.hero figure img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}
.hero figcaption {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.6rem;
}

.btn-accent { background: var(--color-menu-bg); color: #fff; }
.btn-accent:hover { background: #7a2624; color: #fff; }

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.step-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 1.5rem;
}
.step-card .step-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-menu-bg);
    margin-bottom: 0.5rem;
}
.step-card:nth-child(2) .step-number { color: var(--color-primary); }
.step-card p { margin: 0; font-size: 0.92rem; }

.contact-card {
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-primary);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
    background: #fff;
}
.contact-card strong { display: block; font-size: 1.05rem; margin-bottom: 0.2rem; }
.contact-card a { color: var(--color-menu-bg); }
.contact-links { display: flex; gap: 1.25rem; flex-wrap: wrap; font-size: 0.88rem; }

.site-footer {
    border-top: 1px solid var(--color-border);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.site-footer .muted { font-size: 0.8rem; }
.site-footer nav { display: flex; gap: 1.25rem; font-size: 0.8rem; }

.legal h1 { margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.2rem; margin: 1.75rem 0 0.6rem; }
.legal h3 { font-size: 1rem; margin: 1.25rem 0 0.5rem; }
.legal p, .legal ul { font-size: 0.95rem; line-height: 1.7; color: #444; }

.manual .hero-eyebrow { margin-bottom: 0.5rem; }
.manual h1 { font-size: 1.9rem; }
.manual li { margin-bottom: 0.35rem; }
.manual .step-shot {
    margin: 1.25rem 0;
}
.manual .step-shot img {
    display: block;
    width: 100%;
    max-width: 720px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

@media (max-width: 800px) {
    .hero { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .site-header { flex-direction: column; align-items: flex-start; padding: 0.85rem 1rem; }
    .site-nav { width: 100%; gap: 0.85rem 1.25rem; }
}
