:root {
    --bg: #f7f5ef;
    --olive: #6b7a3f;
    --olive-dark: #4f5a2f;
    --white: #fff;
    --text: #222;
    --muted: #666;
    --shadow: 0 8px 25px rgba(0,0,0,0.08);
    --radius: 14px;

    --bio-bg: #eef7e9;
    --green-bg: #f1f7e4;
    --ung-bg: #f7f1e9;
}

body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 1.5rem;
}

header {
    position: sticky;
    top: 0;
    background: rgba(247,245,239,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 50;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .9rem 0;
}

nav a {
    color: var(--olive-dark);
    padding: .35rem .7rem;
    margin-left: .5rem;
    border-radius: 999px;
    text-decoration: none;
}

nav a:hover { background: rgba(107,122,63,0.1); }

.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--olive-dark);
    color: var(--white);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

.hero {
    padding: 4rem 0;
    background: url('img/hero.jpg') center/cover no-repeat;
    color: var(--white);
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.hero h1 { font-size: 2.8rem; }

section {
    padding: 3rem 0;
}

.subtitle {
    color: var(--muted);
    max-width: 30rem;
}

.price-wrapper {
    background: var(--white);
    padding: 1.4rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: .6rem .5rem;
    border-bottom: 1px solid #ddd;
}

th {
    background: rgba(107,122,63,0.1);
    color: var(--olive-dark);
}

.bio-bg { background: var(--bio-bg); }
.green-bg { background: var(--green-bg); }
.ung-bg { background: var(--ung-bg); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 1.4rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

@media(max-width:900px){
    .contact-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
}
