/* EDEN CLOTHING - REMAINING PAGES */

:root {
    --eden-black: #151515;
    --eden-white: #ffffff;
    --eden-cream: #f5f3ed;
    --eden-green: #b8d96b;
    --eden-gray: #6d6d6d;
    --eden-border: #e5e3dc;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--eden-white);
    color: var(--eden-black);
    font-family: "DM Sans", sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

/* HEADER */

.site-header {
    width: 100%;
    min-height: 78px;
    padding: 18px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-bottom: 1px solid var(--eden-border);
    position: relative;
    z-index: 100;
}

.site-header .logo {
    font-family: "Space Grotesk", sans-serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -2px;
}

.site-header .logo span {
    color: #8aaa3e;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navigation a {
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.navigation a:hover {
    opacity: 0.6;
}

.navigation a.active {
    border-bottom: 2px solid var(--eden-black);
    padding-bottom: 5px;
}

.navigation .nav-contact {
    background: var(--eden-black);
    color: white;
    padding: 12px 19px;
    border-radius: 30px;
}

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    font-size: 27px;
    cursor: pointer;
}

/* GENERAL PAGE ELEMENTS */

.eden-page {
    overflow: hidden;
}

.eden-container {
    width: min(1120px, 86%);
    margin: auto;
}

.eden-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.eden-heading {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(38px, 6vw, 70px);
    line-height: 1.02;
    letter-spacing: -3px;
    margin: 0 0 24px;
}

.eden-text {
    color: var(--eden-gray);
    line-height: 1.8;
    font-size: 16px;
}

.eden-button {
    display: inline-block;
    background: var(--eden-black);
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid var(--eden-black);
    transition: 0.2s ease;
}

.eden-button:hover {
    background: transparent;
    color: var(--eden-black);
}

.eden-button-light {
    background: var(--eden-green);
    color: var(--eden-black);
    border-color: var(--eden-green);
}

/* ABOUT PAGE */

.about-hero {
    background: var(--eden-cream);
    padding: 85px 0;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 65px;
}

.about-hero-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 4px;
}

.about-story {
    padding: 100px 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.about-story h2,
.about-values h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.about-values {
    background: var(--eden-black);
    color: white;
    padding: 90px 0;
}

.about-values .eden-text {
    color: #c5c5c5;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 45px;
}

.value-card {
    padding: 30px;
    border: 1px solid #414141;
    min-height: 220px;
}

.value-card h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 23px;
}

.value-card p {
    color: #c5c5c5;
    line-height: 1.7;
}

.about-cta {
    padding: 85px 0;
    text-align: center;
    background: var(--eden-green);
}

.about-cta h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(35px, 5vw, 58px);
    letter-spacing: -2px;
    margin: 0 0 20px;
}

/* BLOG PAGE */

.blog-hero {
    background: var(--eden-cream);
    padding: 75px 0;
    text-align: center;
}

.blog-hero .eden-heading {
    max-width: 850px;
    margin: 0 auto 20px;
}

.blog-hero .eden-text {
    max-width: 650px;
    margin: auto;
}

.blog-featured {
    padding: 75px 0;
}

.blog-featured-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.blog-meta {
    color: var(--eden-gray);
    font-size: 13px;
    margin: 25px 0 12px;
}

.blog-article {
    max-width: 780px;
    margin: 45px auto 0;
}

.blog-article h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 30px;
    margin-top: 40px;
}

.blog-article p,
.blog-article li {
    color: #4d4d4d;
    font-size: 16px;
    line-height: 1.9;
}

.blog-article ul {
    padding-left: 22px;
}

.voice-search-section {
    background: var(--eden-cream);
    padding: 75px 0;
}

.voice-search-section h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 38px;
}

.voice-query {
    padding: 18px 22px;
    background: white;
    border: 1px solid var(--eden-border);
    margin: 12px 0;
    border-radius: 5px;
    line-height: 1.6;
}

.blog-cta {
    padding: 75px 0;
    text-align: center;
}

/* CONTACT PAGE */

.contact-hero {
    background: var(--eden-cream);
    padding: 75px 0;
    text-align: center;
}

.contact-hero .eden-text {
    max-width: 650px;
    margin: auto;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.contact-info-card {
    background: var(--eden-black);
    color: white;
    padding: 35px;
}

.contact-info-card p {
    color: #d0d0d0;
    line-height: 1.8;
}

.contact-info-card a {
    color: var(--eden-green);
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form label {
    display: block;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d8d8d8;
    background: #ffffff;
    border-radius: 4px;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--eden-black);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    cursor: pointer;
    justify-self: start;
}

.form-message {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 5px;
}

/* FOOTER */

.eden-footer {
    background: var(--eden-black);
    color: white;
    padding: 55px 7% 25px;
}

.eden-footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 35px;
}

.eden-footer .footer-logo {
    font-family: "Space Grotesk", sans-serif;
    font-size: 30px;
    font-weight: 700;
}

.eden-footer .footer-logo span {
    color: var(--eden-green);
}

.eden-footer p {
    color: #bdbdbd;
    line-height: 1.7;
}

.eden-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: center;
}

.eden-footer-links a {
    font-size: 14px;
}

.eden-footer-bottom {
    border-top: 1px solid #414141;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
    color: #bdbdbd;
}

/* MOBILE RESPONSIVENESS */

@media (max-width: 850px) {
    .site-header {
        padding: 16px 6%;
    }

    .menu-toggle {
        display: block;
    }

    .navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 25px 6%;
        background: white;
        border-top: 1px solid var(--eden-border);
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .navigation.show {
        display: flex;
    }

    .about-hero-grid,
    .about-story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-hero {
        padding: 55px 0;
    }

    .about-hero-image img {
        height: 380px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-story,
    .about-values,
    .contact-section {
        padding: 60px 0;
    }

    .blog-featured-image img {
        height: 300px;
    }

    .eden-footer-top,
    .eden-footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .eden-container {
        width: 90%;
    }

    .eden-heading {
        letter-spacing: -1.5px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 25px;
    }

    .blog-article p,
    .blog-article li {
        font-size: 15px;
    }
}
html,
body {
    height: auto;
    min-height: 100%;
    overflow-y: auto;
}

.eden-page {
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: visible;
}