:root {
    --primary-color: #000000;
    --secondary-color: #111111;
    --accent-color: #333333;
    --text-color: #000000;
    --text-light: #555555;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --border-color: #dddddd;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Merriweather', serif;
    color: var(--secondary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.accent {
    color: var(--primary-color);
}

.accent-text {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* Header */
header {
    background: var(--white);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--secondary-color);
}

nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    font-weight: 500;
    font-size: 0.95rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--primary-color);
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: var(--bg-light);
    border-color: var(--bg-light);
}

.btn-link {
    color: var(--secondary-color);
    padding-left: 0;
    border: none;
}

.btn-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.btn-block {
    width: 100%;
    display: block;
}

/* Hero Section */
.hero {
    padding: 10rem 0;
    background: var(--white);
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero .lead {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 750px;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Philosophy Section */
.philosophy {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.card {
    padding: 3rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 0px var(--primary-color);
}

.card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    filter: grayscale(1);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Solutions Section */
.solutions {
    padding: 8rem 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.solutions .section-header h2 {
    color: var(--white);
}

.solutions .section-header p {
    color: #888888;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.solution-item {
    text-align: center;
    padding: 3rem 2rem;
    background: #111111;
    border: 1px solid #222222;
}

.solution-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.solution-item h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.solution-item p {
    color: #888888;
}

/* Discovery Section */
.discovery {
    padding: 10rem 0;
    background-color: var(--white);
}

.discovery-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
}

.discovery-text {
    flex: 2;
}

.discovery-text h2 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
}

.discovery-text p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 850px;
}

.discovery-icon {
    flex: 1;
    font-size: 10rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 100;
}

/* CTA Banner */
.cta-banner {
    padding: 6rem 0;
    background-color: var(--bg-light);
    color: var(--primary-color);
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-banner h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.cta-banner p {
    margin-bottom: 2.5rem;
    font-size: 1.3rem;
    color: var(--text-light);
}

/* Local Roots Section */
.local {
    padding-bottom: 10rem;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.local-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.local-icon {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.1;
    flex: 1;
    text-align: center;
}

.local-text {
    flex: 2;
}

.local-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.local-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
}

@media (max-width: 768px) {
    .local-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background-color: var(--white);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-method {
    background: var(--white);
    padding: 5rem 3rem;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.contact-method:hover {
    border-color: var(--primary-color);
    background-color: var(--bg-light);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.contact-method h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.contact-method p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.method-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Footer */
footer {
    padding: 4rem 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}

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

.footer-links p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    .discovery-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .solutions-grid, .contact-methods {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 6rem 0;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
        flex-direction: column;
    }
    .discovery-text h2 {
        font-size: 2.5rem;
    }
}
