/* Color Palette & Custom Properties */
:root {
    --alpine-gold: #D4A373;   /* Rich warm wood finish: honey oak, cherry, oiled cedar */
    --deep-bark: #1A1A1A;     /* Dark charcoal, dark walnut, Shou Sugi Ban aesthetic */
    --lichen-green: #708238;  /* Subtle moss/lichen accent for an eco-friendly connection */
    --granite-grey: #3A3D40;   /* Textured, neutral grey of mountain rocks */
    --text-light: #F4F4F9;     /* Off-white for sharp readability over dark backgrounds */
    --text-muted: #B0B5C2;     /* Soft grey for secondary copy */
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--deep-bark);
    color: var(--text-light);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Navigation */
header {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--alpine-gold);
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background: radial-gradient(circle at top right, var(--granite-grey) 0%, var(--deep-bark) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-text h1 span {
    color: var(--alpine-gold);
    display: block;
    margin-top: 0.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

/* Badge/Artwork Container */
.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.marmot-badge {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 50%;
    border: 6px solid var(--granite-grey);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: var(--deep-bark);
    cursor: pointer;
}

.marmot-badge:hover {
    transform: scale(1.03);
    border-color: var(--alpine-gold);
}

/* Call To Action Buttons */
.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12.25rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--alpine-gold);
    color: var(--deep-bark);
    box-shadow: 0 4px 14px rgba(212, 163, 115, 0.3);
}

.btn-primary:hover {
    background-color: #e2b384;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--lichen-green);
    border: 2px solid var(--lichen-green);
}

.btn-secondary:hover {
    background-color: var(--lichen-green);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Features/Services Section */
.features-strip {
    background-color: #151515;
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.feature-card {
    padding: 1.5rem;
    border-left: 3px solid var(--granite-grey);
    transition: border-color 0.3s ease;
}

.feature-card:hover {
    border-color: var(--lichen-green);
}

.feature-card h3 {
    color: var(--alpine-gold);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
footer {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #0F0F0F;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

footer span {
    color: var(--alpine-gold);
}
