:root {
    --primary: #2d5a3d;
    --primary-light: #3a7a52;
    --secondary: #c8a45c;
    --secondary-light: #d4b876;
    --dark: #1a2e23;
    --text: #4a5e52;
    --text-light: #6b7f73;
    --cream: #faf8f4;
    --white: #ffffff;
    --border: #e8e4dd;
    --max-width: 1140px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    background: var(--cream);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    background: var(--white);
    box-shadow: 0 0 60px rgba(0,0,0,0.06);
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.2;
}

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.nav-logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

/* Hero */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin: 2rem;
    border: 1px solid var(--border);
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,46,35,0.6), rgba(26,46,35,0.3) 40%, rgba(26,46,35,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 650px;
    padding: 2.5rem;
    border: 1px solid rgba(200,164,92,0.4);
}

.hero-subtitle {
    color: var(--secondary);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero h1 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-tagline {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 550px;
    margin: 0 auto 2rem;
}

/* Page Hero (subpages) */
.page-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,46,35,0.3), rgba(26,46,35,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.6rem;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--secondary);
    color: var(--dark);
    border: 2px solid var(--secondary);
}

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

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

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

/* Intro */
.intro {
    padding: 5rem 3rem;
    text-align: center;
}

.intro-label {
    color: var(--secondary);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
}

.intro h2 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
}

.intro p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
}

/* Services */
.services {
    padding: 4rem 3rem;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

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

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--secondary);
}

/* Feature Split */
.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.feature-image {
    min-height: 300px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem;
}

.feature-split--reverse {
    direction: rtl;
}
.feature-split--reverse > * {
    direction: ltr;
}

.feature-content .intro-label {
    text-align: left;
}

.feature-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.feature-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Quote */
.quote-section {
    background: var(--cream);
    padding: 4.5rem 3rem;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.quote-section blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--dark);
    font-style: italic;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

.quote-section cite {
    display: block;
    margin-top: 1rem;
    color: var(--secondary);
    font-size: 0.8rem;
    font-style: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Products */
.products {
    padding: 5rem 3rem;
}

.products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-header h2 {
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
}

.products-header p {
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--cream);
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.product-item:hover img {
    transform: scale(1.05);
}

.product-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,46,35,0.8), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.product-item:hover::after {
    opacity: 1;
}

.product-label {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s;
}

.product-item:hover .product-label {
    opacity: 1;
    transform: translateY(0);
}

/* Stories */
.stories {
    padding: 4rem 3rem;
    background: var(--cream);
}

.stories-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.stories-header h2 {
    font-size: 2.4rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.story-card {
    background: var(--white);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.story-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.story-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.story-card p {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Content Image (natural aspect ratio) */
.content-image {
    margin: 2rem 0;
    overflow: hidden;
    border-radius: 2px;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-header h2 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

/* Content Section (subpages) */
.content-section {
    padding: 4rem 3rem;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.content-section p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    max-width: 750px;
}

/* CTA */
.cta {
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,46,35,0.85);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 4rem 3rem 1.5rem;
    color: rgba(255,255,255,0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.footer p {
    font-size: 0.85rem;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 500px;
}
.contact-form label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.3rem;
    display: block;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}
.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}
.contact-form .btn {
    align-self: flex-start;
    cursor: pointer;
    border: 2px solid var(--secondary);
}
.contact-info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.contact-info-block p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    line-height: 1.8;
}
.contact-info-block a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}
.contact-info-block a:hover {
    color: var(--secondary);
}

/* Tablet */
@media (max-width: 992px) {
    .nav {
        padding: 1rem 2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem 2rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    }

    .nav-links--open {
        display: flex;
    }

    .nav-links li {
        padding: 0.5rem 0;
    }

    .hero {
        height: 400px;
        margin: 1rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .intro {
        padding: 3.5rem 2rem;
    }

    .intro h2 {
        font-size: 2rem;
    }

    .services {
        padding: 3rem 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-split {
        grid-template-columns: 1fr;
    }

    .feature-image {
        min-height: 250px;
    }

    .feature-content {
        padding: 2.5rem 2rem;
    }

    .quote-section {
        padding: 3.5rem 2rem;
    }

    .quote-section blockquote {
        font-size: 1.5rem;
    }

    .products {
        padding: 3.5rem 2rem;
    }

    .products-header h2 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stories {
        padding: 3rem 2rem;
    }

    .stories-header h2 {
        font-size: 2rem;
    }

    .cta {
        padding: 4rem 2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .footer {
        padding: 3rem 2rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .content-section {
        padding: 3rem 2rem;
    }

    .page-hero {
        height: 220px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero {
        height: 350px;
        margin: 0.5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.7rem;
    }

    .hero-content {
        padding: 1.2rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.75rem;
    }

    .intro h2 {
        font-size: 1.7rem;
    }

    .services-grid {
        gap: 1rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .feature-content h2 {
        font-size: 1.6rem;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .story-card {
        padding: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta h2 {
        font-size: 1.7rem;
    }

    .page-hero {
        height: 180px;
    }

    .page-hero h1 {
        font-size: 1.6rem;
    }
}
