/* =========================================
   EDEN CLOTHING
   Premium Minimalist Streetwear Website
========================================= */


/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f7f7f2;
    color: #171717;
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:root {
    --black: #111111;
    --white: #ffffff;
    --off-white: #f7f7f2;
    --grey: #777777;
    --light-grey: #e7e7df;
    --green: #b9ef63;
    --dark-green: #263d22;
    --beige: #e9e2d4;
    --heading-font: "Space Grotesk", sans-serif;
}

.section-padding {
    padding: 100px 8%;
}

.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.text-link {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 5px;
    transition: opacity 0.3s ease;
}

.text-link:hover {
    opacity: 0.55;
}


/* ANNOUNCEMENT BAR */

.announcement-bar {
    background: var(--green);
    color: var(--black);
    text-align: center;
    padding: 9px 15px;
}

.announcement-bar p {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
}


/* NAVIGATION */

.site-header {
    background: var(--off-white);
    position: relative;
    z-index: 10;
    border-bottom: 1px solid #e8e8e1;
}

.navbar {
    min-height: 82px;
    padding: 0 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand-logo {
    font-family: var(--heading-font);
    font-size: 35px;
    font-weight: 700;
    letter-spacing: -3px;
}

.brand-logo span {
    color: #7ba83a;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 27px;
}

.nav-links a {
    font-size: 12px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #638b2f;
}

.nav-cta {
    background: var(--black);
    color: var(--white);
    padding: 13px 19px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: #405b2d;
}


/* BUTTONS */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 16px 23px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.button-dark {
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
}

.button-dark:hover {
    background: #405b2d;
    border-color: #405b2d;
    transform: translateY(-3px);
}

.button-outline {
    border: 1px solid #aaaaa3;
    color: var(--black);
}

.button-outline:hover {
    background: var(--black);
    color: var(--white);
}

.button-light {
    background: var(--green);
    color: var(--black);
}

.button-light:hover {
    background: var(--white);
    transform: translateY(-3px);
}


/* HERO */

.hero {
    min-height: 650px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 55px 8% 75px;
    gap: 55px;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    padding: 25px 0;
}

.hero-content .eyebrow {
    margin-bottom: 25px;
    color: #687d4d;
}

.hero h1 {
    font-family: var(--heading-font);
    font-size: clamp(55px, 7vw, 100px);
    line-height: 0.92;
    letter-spacing: -6px;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero h1 span {
    color: #7ba83a;
}

.hero-description {
    max-width: 440px;
    color: #62625c;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-note {
    margin-top: 35px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.green-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #7ba83a;
    display: inline-block;
}

.hero-image {
    position: relative;
    height: 530px;
    background: var(--beige);
}

.hero-image img {
    height: 100%;
    object-position: center;
}

.image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.85);
    color: white;
    padding: 15px 18px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-sticker {
    position: absolute;
    top: 25px;
    right: -20px;
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: var(--green);
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: var(--heading-font);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.15;
    transform: rotate(10deg);
}


/* BRAND INTRO */

.brand-intro {
    background: var(--white);
}

.section-label {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--light-grey);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 100px;
    align-items: center;
    padding-top: 65px;
}

.intro-grid h2 {
    font-family: var(--heading-font);
    font-size: clamp(45px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -4px;
}

.intro-grid h2 span {
    color: #7ba83a;
}

.intro-text p {
    color: #66665f;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.intro-text .text-link {
    margin-top: 15px;
}


/* SECTION HEADINGS */

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 25px;
    margin-bottom: 40px;
}

.section-heading .eyebrow {
    color: #748b55;
    margin-bottom: 12px;
}

.section-heading h2 {
    font-family: var(--heading-font);
    font-size: clamp(35px, 5vw, 60px);
    line-height: 1;
    letter-spacing: -3px;
}


/* CATEGORY SECTION */

.category-section {
    background: var(--off-white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    height: 430px;
    position: relative;
    overflow: hidden;
    background: #deded4;
}

.category-card img {
    height: 100%;
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.06);
}

.category-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    padding: 25px;
    color: var(--white);
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78),
        transparent 65%
    );
}

.category-overlay p {
    font-size: 9px;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-overlay h3 {
    font-family: var(--heading-font);
    font-size: 35px;
    letter-spacing: -1px;
}

.category-overlay span {
    margin-top: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* FEATURED PRODUCTS */

.featured-section {
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    min-width: 0;
}

.product-image {
    height: 340px;
    position: relative;
    overflow: hidden;
    background: #efefe9;
}

.product-image img {
    height: 100%;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 2;
    background: var(--black);
    color: var(--white);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 10px;
}

.green-badge {
    background: var(--green);
    color: var(--black);
}

.product-info {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 16px;
}

.product-info h3 {
    font-family: var(--heading-font);
    font-size: 14px;
    line-height: 1.4;
}

.product-info p {
    font-size: 11px;
    color: var(--grey);
    margin-top: 5px;
}

.product-price {
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.product-disclaimer {
    color: var(--grey);
    font-size: 10px;
    margin-top: 30px;
}


/* VALUES SECTION */

.values-section {
    background: var(--black);
    color: var(--white);
}

.values-heading {
    margin-bottom: 60px;
}

.values-heading .eyebrow {
    color: var(--green);
    margin-bottom: 20px;
}

.values-heading h2 {
    font-family: var(--heading-font);
    font-size: clamp(45px, 7vw, 85px);
    line-height: 0.98;
    letter-spacing: -5px;
}

.values-heading h2 span {
    color: var(--green);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.value-card {
    border-top: 1px solid #484848;
    padding-top: 25px;
}

.value-number {
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.value-card h3 {
    font-family: var(--heading-font);
    font-size: 22px;
    margin: 25px 0 12px;
}

.value-card p {
    color: #b7b7b0;
    font-size: 13px;
    line-height: 1.9;
    max-width: 300px;
}


/* SUSTAINABILITY */

.sustainability-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--dark-green);
    color: var(--white);
}

.sustainability-image {
    min-height: 500px;
}

.sustainability-image img {
    height: 100%;
    min-height: 500px;
}

.sustainability-content {
    padding: 75px 12%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.sustainability-content .eyebrow {
    color: var(--green);
    margin-bottom: 25px;
}

.sustainability-content h2 {
    font-family: var(--heading-font);
    font-size: clamp(38px, 4.5vw, 62px);
    line-height: 1.02;
    letter-spacing: -3px;
    margin-bottom: 25px;
}

.sustainability-content h2 span {
    color: var(--green);
}

.sustainability-content > p:not(.eyebrow) {
    color: #d0d7c9;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 30px;
}


/* JOURNAL */

.journal-section {
    background: var(--off-white);
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.journal-image {
    height: 260px;
    overflow: hidden;
    background: var(--beige);
    margin-bottom: 20px;
}

.journal-image img {
    height: 100%;
    transition: transform 0.5s ease;
}

.journal-card:hover .journal-image img {
    transform: scale(1.05);
}

.journal-category {
    color: #6c8e3e;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.journal-card h3 {
    font-family: var(--heading-font);
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.journal-card > a > p:not(.journal-category) {
    color: #66665f;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.journal-card .text-link {
    font-size: 10px;
}


/* NEWSLETTER */

.newsletter-section {
    background: var(--beige);
    padding: 80px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.newsletter-section .eyebrow {
    color: #6c8e3e;
    margin-bottom: 20px;
}

.newsletter-section h2 {
    font-family: var(--heading-font);
    font-size: clamp(35px, 4.5vw, 58px);
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 20px;
}

.newsletter-section > div > p:last-child {
    color: #66665f;
    font-size: 14px;
    line-height: 1.8;
    max-width: 430px;
}

.newsletter-form label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.newsletter-input {
    display: flex;
    border-bottom: 1px solid #77776f;
}

.newsletter-input input {
    width: 100%;
    min-width: 0;
    padding: 16px 0;
    border: none;
    outline: none;
    background: transparent;
    color: var(--black);
    font-size: 13px;
}

.newsletter-input button {
    border: none;
    background: var(--black);
    color: var(--white);
    padding: 0 18px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    white-space: nowrap;
}

.newsletter-input button:hover {
    background: #405b2d;
}

.form-message {
    color: #77776f;
    font-size: 10px;
    margin-top: 15px;
}


/* FINAL CTA */

.final-cta {
    text-align: center;
    padding: 110px 20px;
    background: var(--green);
}

.final-cta .eyebrow {
    margin-bottom: 20px;
}

.final-cta h2 {
    font-family: var(--heading-font);
    font-size: clamp(55px, 10vw, 115px);
    line-height: 0.9;
    letter-spacing: -7px;
    margin-bottom: 35px;
}

.final-cta h2 span {
    color: var(--dark-green);
}

.final-cta .button {
    margin: auto;
}


/* FOOTER */

.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 70px 8% 25px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo {
    display: inline-block;
    font-size: 42px;
    margin-bottom: 15px;
}

.footer-brand > p:not(.footer-description) {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--green);
}

.footer-description {
    color: #a7a7a0;
    font-size: 12px;
    line-height: 1.9;
    max-width: 260px;
    margin-top: 20px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 13px;
}

.footer-column h3 {
    font-size: 10px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    color: var(--green);
}

.footer-column a {
    color: #c5c5bf;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--green);
}

.footer-bottom {
    border-top: 1px solid #393939;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #92928c;
    font-size: 9px;
    letter-spacing: 1px;
}


/* RESPONSIVE DESIGN */

@media (max-width: 1100px) {

    .navbar {
        padding: 20px 5%;
        flex-wrap: wrap;
    }

    .nav-links {
        gap: 16px;
    }

    .hero {
        padding-left: 5%;
        padding-right: 5%;
        gap: 30px;
    }

    .section-padding {
        padding: 80px 5%;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 35px;
    }

    .product-image {
        height: 400px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 760px) {

    .announcement-bar p {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .navbar {
        justify-content: space-between;
        gap: 15px;
        padding: 15px 5%;
    }

    .brand-logo {
        font-size: 30px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding: 12px 0 5px;
        gap: 22px;
    }

    .nav-links a {
        white-space: nowrap;
        font-size: 11px;
    }

    .nav-cta {
        padding: 11px 14px;
        font-size: 9px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 55px 5%;
        gap: 35px;
    }

    .hero h1 {
        font-size: clamp(58px, 15vw, 90px);
        letter-spacing: -4px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-image {
        height: 430px;
    }

    .hero-sticker {
        right: 10px;
        width: 90px;
        height: 90px;
        font-size: 11px;
    }

    .section-padding {
        padding: 65px 5%;
    }

    .section-label {
        font-size: 8px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 45px;
    }

    .intro-grid h2 {
        font-size: 58px;
        letter-spacing: -3px;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
        gap: 20px;
    }

    .section-heading h2 {
        font-size: 42px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        height: 430px;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px 12px;
    }

    .product-image {
        height: 260px;
    }

    .product-info {
        flex-direction: column;
        gap: 6px;
    }

    .product-info h3 {
        font-size: 13px;
    }

    .values-heading h2 {
        font-size: 54px;
        letter-spacing: -3px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .value-card h3 {
        margin-top: 15px;
    }

    .sustainability-section {
        grid-template-columns: 1fr;
    }

    .sustainability-image,
    .sustainability-image img {
        min-height: 350px;
        height: 350px;
    }

    .sustainability-content {
        padding: 55px 7%;
    }

    .sustainability-content h2 {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .journal-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .journal-image {
        height: 300px;
    }

    .newsletter-section {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 65px 5%;
    }

    .newsletter-section h2 {
        font-size: 45px;
    }

    .newsletter-input button {
        padding: 0 12px;
        font-size: 9px;
    }

    .final-cta {
        padding: 80px 15px;
    }

    .final-cta h2 {
        font-size: 65px;
        letter-spacing: -4px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        font-size: 8px;
    }

}


@media (max-width: 400px) {

    .hero h1 {
        font-size: 55px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .product-image {
        height: 215px;
    }

    .product-info h3 {
        font-size: 12px;
    }

    .final-cta h2 {
        font-size: 53px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

}

/* =========================================
   EDEN CLOTHING — ADDITIONAL PAGE STYLES
========================================= */

html {
    scroll-behavior: smooth;
}

.section > .category-grid {
    gap: 32px;
    align-items: start;
}

.section > .category-grid > div {
    padding: 28px;
    background: #f5f3ed;
    border: 1px solid #e6e3da;
}

.section > .category-grid > div h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    margin: 15px 0;
}

.section > .category-grid > div p:not(.eyebrow) {
    line-height: 1.8;
    color: #555;
}

.contact-form {
    max-width: 850px;
    margin: 35px auto 0;
    padding: 42px;
    background: #f5f3ed;
    border: 1px solid #e5e1d8;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.form-field label {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #d3d0c7;
    border-radius: 0;
    background: #fff;
    color: #171717;
    font: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #6b8e23;
}

.form-field textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form small {
    display: block;
    margin-top: 20px;
    color: #777;
    line-height: 1.6;
}

.form-message {
    margin-top: 16px;
    font-weight: 600;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin: 24px 0;
}

.footer-links a {
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 25px;
    font-size: 13px;
    opacity: 0.7;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 700px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 24px 18px;
    }

    .section > .category-grid {
        gap: 18px;
    }

    .footer-links {
        gap: 15px;
    }
}