:root {
    --bg: #F5EFE6;
    --surface: #FFFFFF;
    --border: #E8DFD6;
    --primary: #7B9E7A;
    --secondary: #C4956A;
    --accent: #D4A5C9;
    --text-dark: #2C2416;
    --text-med: #5A4D3F;
    --text-light: #8A7D6F;
    --radius: 12px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background: var(--bg);
    color: var(--text-dark);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    line-height: 1.7;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV */
nav {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    position: sticky; top: 0; z-index: 100;
}
nav .nav-inner {
    max-width: 900px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
nav .nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
}
nav .nav-logo img { height: 36px; }
nav .nav-logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 400; color: var(--text-dark);
}
nav .nav-links { display: flex; gap: 24px; flex-wrap: wrap; }
nav .nav-links a {
    font-size: 0.82rem; font-weight: 400; letter-spacing: 0.05em;
    color: var(--text-med); text-decoration: none; transition: color 0.2s;
}
nav .nav-links a:hover { color: var(--primary); text-decoration: none; }
nav .nav-links a.active { color: var(--primary); font-weight: 500; }

/* LAYOUT */
.container { max-width: 800px; margin: 0 auto; padding: 0 24px; }
section { padding: 60px 0; }
section + section { border-top: 1px solid var(--border); }

/* TYPOGRAPHY */
h1 { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; letter-spacing: 0.04em; line-height: 1.2; }
h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; margin-bottom: 20px; color: var(--text-dark); }
h3 { font-family: 'Jost', sans-serif; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); margin-bottom: 12px; }
p { margin-bottom: 16px; color: var(--text-med); font-size: 1.02rem; }
strong { font-weight: 500; color: var(--text-dark); }

/* HERO IMAGE */
.hero-img {
    width: 100%; max-height: 360px; object-fit: cover;
    border-radius: var(--radius); margin: 30px 0;
}

/* SECTION IMAGE */
.section-img {
    width: 100%; border-radius: var(--radius);
    margin-bottom: 28px; object-fit: cover; max-height: 320px;
}

/* BUTTONS */
.btn {
    display: inline-block; padding: 12px 28px;
    border: 1.5px solid var(--primary); border-radius: 40px;
    color: var(--primary); font-family: 'Jost', sans-serif;
    font-size: 0.82rem; font-weight: 400; letter-spacing: 0.1em;
    text-transform: uppercase; transition: all 0.2s; cursor: pointer;
    text-decoration: none;
}
.btn:hover { background: var(--primary); color: #fff; text-decoration: none; }
.btn-fill { background: var(--primary); color: #fff; }
.btn-fill:hover { background: #6B8E6A; }
.btn-secondary { border-color: var(--secondary); color: var(--secondary); }
.btn-secondary:hover { background: var(--secondary); color: #fff; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

/* CARDS */
.card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px 30px; margin-bottom: 16px;
}
.card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500; margin-bottom: 6px; }
.card .price { font-size: 0.85rem; color: var(--primary); font-weight: 400; margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }

/* LIST */
.feature-list { list-style: none; padding: 0; }
.feature-list li { padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--text-med); font-size: 0.95rem; }
.feature-list li:last-child { border-bottom: none; }
.feature-list li strong { color: var(--text-dark); }

/* PRINCIPLES */
.principles { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.principle { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; }
.principle strong { display: block; margin-bottom: 4px; font-size: 0.95rem; }
.principle p { font-size: 0.88rem; margin-bottom: 0; }

/* RESOURCE CARD */
.resource-card {
    background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--primary);
    border-radius: var(--radius); padding: 24px 28px; margin-bottom: 16px;
}
.resource-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 500; margin-bottom: 8px; }
.resource-card p { font-size: 0.9rem; margin-bottom: 12px; }
.coming { font-size: 0.78rem; font-style: italic; color: var(--text-light); }

/* FOOTER */
footer { text-align: center; padding: 40px 0; color: var(--text-light); font-size: 0.85rem; }
footer .sig { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; margin-bottom: 8px; color: var(--text-med); }

/* RESPONSIVE */
@media (max-width: 600px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.5rem; }
    nav .nav-links { gap: 14px; }
    nav .nav-links a { font-size: 0.75rem; }
    .principles { grid-template-columns: 1fr; }
    section { padding: 40px 0; }
    .btn-group { flex-direction: column; align-items: stretch; text-align: center; }
    .hero-img { max-height: 220px; }
}
