/* Pine & Pixel — Brand Styles */

:root {
    --pine: #2D5016;
    --copper: #B87333;
    --off-white: #F5F2EB;
    --charcoal: #1A1A1A;
    --dark-gray: #374151;
    --light-gray: #9CA3AF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--charcoal);
    background: var(--off-white);
    line-height: 1.6;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pine);
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

nav a {
    color: var(--charcoal);
    text-decoration: none;
}

nav a:hover { color: var(--copper); }

.nav-phone a {
    color: var(--pine);
    font-weight: 600;
}

.hero {
    text-align: center;
    padding: 5rem 2rem 4rem;
    max-width: 700px;
    margin: 0 auto;
}

.tagline {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--copper);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--pine);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.15rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.cta {
    display: inline-block;
    background: var(--pine);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.cta:hover { background: #234011; }

.services, .about, .why, .contact {
    max-width: 960px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

h2 {
    font-size: 1.75rem;
    color: var(--pine);
    margin-bottom: 1.5rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid #e5e5e5;
}

.card h3 { color: var(--pine); margin-bottom: 0.5rem; }
.card .price { color: var(--copper); font-weight: 600; margin-bottom: 1rem; font-size: 1.1rem; }

.includes {
    list-style: none;
    padding: 0;
}

.includes li {
    padding: 0.3rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.includes li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--pine);
    font-weight: 700;
}

.pricing-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-style: italic;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e5e5e5;
}

.feature h3 { color: var(--pine); margin-bottom: 0.5rem; }

.contact form {
    max-width: 500px;
    margin-top: 1.5rem;
}

.contact label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact button {
    background: var(--pine);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

.contact button:hover { background: #234011; }

.contact-options {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.contact-options p { margin-bottom: 0.5rem; }
.contact-options a { color: var(--copper); font-weight: 600; }

footer {
    text-align: center;
    padding: 2rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.footer-phone { margin-top: 0.5rem; }
.footer-phone a { color: var(--copper); text-decoration: none; }
.footer-phone a:hover { text-decoration: underline; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--copper);
    outline-offset: 2px;
}

@media (max-width: 600px) {
    .hero h1 { font-size: 1.75rem; }
    nav { flex-direction: column; gap: 0.75rem; }
    nav ul { gap: 1rem; }
    .contact button { width: 100%; }
}
