:root {
    --primary: #4a5d23; /* Sage/Oak Green */
    --secondary: #8b5a2b; /* Earth Brown */
    --accent: #d4a373; /* Limestone/Sand */
    --dark: #2c2c2c;
    --light: #f4f4f0;
    --font-head: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--dark); line-height: 1.6; background-color: var(--light); }

/* Typography */
h1, h2, h3 { font-family: var(--font-head); margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; }

/* Layout Utilities */
.container { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.bg-light { background: #e8e8e4; }
.bg-dark { background: var(--dark); color: white; }
.text-white { color: white; }

/* Navigation */
nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%; background: white; box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.logo { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--primary); }
.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a { font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* Hero */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('https://bucket-7gmedia.s3.us-west-2.amazonaws.com/media/background.jpg'); /* Placeholder Hill Country image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero h1 { font-size: 3.5rem; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 2rem; }
.tagline { margin-top: 1rem; font-style: italic; opacity: 0.8; }

/* Components */
.btn { display: inline-block; padding: 12px 30px; border-radius: 4px; font-weight: bold; transition: 0.3s; cursor: pointer; border: none; }
.btn-primary { background: var(--secondary); color: white; }
.btn-primary:hover { background: var(--primary); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }

.section-header { text-align: center; margin-bottom: 3rem; }
.divider { width: 60px; height: 3px; background: var(--accent); margin: 1rem auto; }

/* Timeline */
.timeline-item { border-left: 3px solid var(--primary); padding-left: 20px; margin-bottom: 2rem; }
.year { font-weight: bold; color: var(--primary); font-size: 1.2rem; }

/* Cards */
.card { background: white; padding: 2rem; border-radius: 8px; text-align: center; box-shadow: 0 4px 6px rgba(0,0,0,0.05); border: 1px solid #ddd; }
.card.featured { border: 2px solid var(--primary); transform: scale(1.05); }
.price { font-size: 1.5rem; color: var(--secondary); font-weight: bold; margin: 1rem 0; }
.card ul { list-style: none; margin-bottom: 2rem; }
.card li { margin-bottom: 0.5rem; font-size: 0.9rem; }

/* Contact Form */
.contact-form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form select, .contact-form textarea { padding: 12px; border: 1px solid #555; border-radius: 4px; font-family: inherit; }
.footer-info { text-align: center; margin-top: 4rem; opacity: 0.5; font-size: 0.8rem; }

/* Responsive */
@media(min-width: 768px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}
@media(max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .nav-links { display: none; } /* Simplified mobile nav */
    .card.featured { transform: scale(1); }
}
