﻿:root {
    --bg: #f8f4ec;
    --surface: #fffdf8;
    --ink: #131313;
    --accent: #ff5f00;
    --accent-2: #0c6b58;
    --muted: #6a6760;
    --line: #e6dece;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top right, #ffd6ab 0%, transparent 40%),
        radial-gradient(circle at left bottom, #b8f3e5 0%, transparent 45%),
        var(--bg);
    overflow-x: hidden;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 5;
    background: rgba(255, 253, 248, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.logo {
    text-decoration: none;
    color: var(--ink);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
}

nav { display: flex; gap: 16px; align-items: center; }

nav a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
}

.btn-small {
    padding: 8px 14px;
    border-radius: 100px;
    background: var(--accent-2);
    color: #fff;
}

.hero {
    padding: 72px 0 48px;
    --hero-shift: 0px;
    transform: translateY(var(--hero-shift));
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
}

.badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 100px;
    background: #ffe8cf;
    color: #8b3f00;
    font-weight: 700;
    font-size: 0.85rem;
}

h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin: 14px 0;
}

.hero p { color: var(--muted); font-size: 1.05rem; }

.hero-actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }

.btn-primary,
.btn-secondary {
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-secondary { background: #f4efe6; color: var(--ink); border: 1px solid var(--line); }

.hero-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    animation: floatCard 5s ease-in-out infinite;
}

.hero-card ul { margin: 0; padding-left: 18px; display: grid; gap: 8px; }

.section { padding: 52px 0; }
.section-alt { background: rgba(255, 255, 255, 0.45); }

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 30px rgba(15, 64, 52, 0.12);
    border-color: #d9ceb8;
}

.card-image,
.detail-image {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--line);
    margin-bottom: 12px;
}

.card-image { height: 170px; }
.detail-image { max-height: 360px; }

.reveal,
.reveal-item,
.card {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show,
.reveal-item.show,
.card.show {
    opacity: 1;
    transform: translateY(0);
}

.card h3 { margin-top: 4px; }
.card p { color: var(--muted); }
.card a { font-weight: 700; color: var(--accent-2); text-decoration: none; }
.price { color: #0a6d57; font-weight: 800; }

.detail-wrap {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 18px;
}

.contact-box {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #f4ede0;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    padding: 30px 0;
}

.site-footer a { color: #145f50; text-decoration: none; }

@media (max-width: 900px) {
    .hero-grid,
    .detail-wrap {
        grid-template-columns: 1fr;
    }

    nav { gap: 10px; font-size: 0.9rem; }
}

@keyframes floatCard {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}
