/* =========================
   NAVBAR
========================= */

.navbar {

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    padding: 40px 0;

}

.navbar-container {

    display: flex;
    align-items: center;
    justify-content: space-between;

}

.logo {

    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
letter-spacing: .03em;

}

.nav-menu {

    display: flex;
    gap: 40px;

}

.nav-menu a {

    font-size: .95rem;

    transition: .3s;

}

.nav-menu a:hover {

    color: var(--gold);

}

.nav-actions {

    display: flex;
    gap: 15px;

}

.nav-icon {

    background: transparent;
    border: none;

    color: var(--ivory);

    cursor: pointer;

}

.mobile-toggle {

    display: none;

    background: transparent;
    border: none;

    color: var(--ivory);

    font-size: 1.5rem;

    cursor: pointer;

}

/* =========================
   HERO
========================= */

.hero {

    min-height: 100vh;

    display: flex;
    align-items: center;

padding-top: 120px;

}

.hero-container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;

}

/* =========================
   HERO CONTENT
========================= */

.hero-content {

    max-width: 480px;

}

.hero-label {

    display: inline-block;

    margin-bottom: 30px;

    font-size: .75rem;

    letter-spacing: .25em;

    text-transform: uppercase;

    color: rgba(246,242,234,.7);

}

.hero-title {

    font-size: clamp(3.5rem, 5vw, 5.8rem);

    line-height: .95;

    margin-bottom: 35px;

}

.hero-description {

    max-width: 550px;

    font-size: 1.15rem;

    line-height: 1.9;

    color: rgba(246,242,234,.85);

    margin-bottom: 50px;

}

.hero-buttons {

    display: flex;
    gap: 20px;

}

/* =========================
   HERO IMAGE
========================= */

.hero-image-wrapper {

    position: relative;

transform: translateX(-20px);

}

.hero-image-wrapper::before {

    content: "";

    position: absolute;

    inset: -30px;

    background:
    radial-gradient(
      rgba(165,138,157,.12),
      transparent 70%
    );

    z-index: -1;

}

.hero-image {

    width: 100%;

    height: 760px;

    object-fit: cover;

    border-radius: 32px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.45);

}

/* =========================
   MOBILE
========================= */



    .hero-content{

        margin:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

}



.section-header {

    flex-direction: column;

    gap: 20px;

    text-align: center;

}
.bottom-showcase {

    grid-template-columns: 1fr;

}

.footer-grid {

    grid-template-columns:
        repeat(2,1fr);

}

.testimonial-card,
.newsletter-card {

    padding: 50px 30px;

}

.newsletter-form {

    flex-direction: column;

}

.footer-grid {

    grid-template-columns: 1fr;

}

}
body {

    background:
        radial-gradient(
            circle at top right,
            rgba(165,138,157,.06),
            transparent 35%
        ),
        #121212;

}

.navbar.scrolled {

    position: fixed;

    background: rgba(18,18,18,.75);

    backdrop-filter: blur(20px);

    border-bottom:
        1px solid rgba(255,255,255,.05);

}

.collections-grid {

    grid-template-columns: 1fr;

}

.philosophy {

    grid-template-columns: 1fr;

}
/* =========================
   COLLECTIONS
========================= */

.collections {

    padding: 100px 0;

}

.collections-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 2px;

}

.collection-card {

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    min-height: 420px;

    background: #1b1b1b;

}

.collection-image {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s ease;

}

.collection-card:hover .collection-image {

    transform: scale(1.05);

}

.collection-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 50px;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.65),
        transparent
    );

}

.collection-overlay h2 {

    font-size: 3rem;

    margin-bottom: 12px;

}

.collection-overlay a {

    color: var(--ivory);

    font-size: .95rem;

    letter-spacing: .08em;

    text-transform: uppercase;

}

/* =========================
   NEW ARRIVALS
========================= */

.new-arrivals {

    padding: 120px 0;

    background: var(--ivory);

}

.section-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 50px;

}

.section-header h2 {

    color: var(--charcoal);

    font-size: 2.5rem;

}

.section-header a {

    color: var(--charcoal);

    font-size: .95rem;

    letter-spacing: .08em;

    text-transform: uppercase;

}

.products-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 24px;

}

.product-card {

    background: white;

    border-radius: 20px;

    overflow: hidden;

    transition: .4s ease;

}

.product-card:hover {

    transform: translateY(-10px);

}

.product-image {

    width: 100%;

    aspect-ratio: 1/1;

    object-fit: cover;

}

.product-info {

    padding: 20px;

}

.product-info h3 {

    color: var(--charcoal);

    font-size: 1rem;

    margin-bottom: 10px;

}

.product-info p {

    color: var(--charcoal);

    font-weight: 600;

}

/* =========================
   PHILOSOPHY
========================= */

.philosophy {

    display: grid;

    grid-template-columns: 1.3fr .7fr;

    min-height: 700px;

    background: var(--charcoal);

}

.philosophy-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}

.philosophy-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 100px;

}

.section-label {

    display: inline-block;

    margin-bottom: 20px;

    letter-spacing: .2em;

    text-transform: uppercase;

    font-size: .75rem;

    color: rgba(246,242,234,.65);

}

.philosophy-content h2 {

    font-size: clamp(3rem,4vw,5rem);

    line-height: 1;

    margin-bottom: 30px;

}

.philosophy-content p {

    font-size: 1.15rem;

    line-height: 1.9;

    color: rgba(246,242,234,.8);

    margin-bottom: 40px;

}

/* =========================
   BEST SELLERS
========================= */

.best-sellers {

    padding: 120px 0;

    background: var(--ivory);

}

.best-sellers-grid {

    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 24px;

}

.featured-product {

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    min-height: 650px;

}

.featured-product img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}

.featured-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 40px;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.7),
        transparent
    );

}

.featured-overlay h3 {

    color: white;

    font-size: 2rem;

    margin-bottom: 12px;

}

.featured-overlay p {

    color: rgba(255,255,255,.8);

    margin-bottom: 16px;

}

.featured-overlay span {

    color: white;

    font-weight: 600;

}

.best-sellers-products {

    display: grid;

    gap: 24px;

}

.mini-product {

    background: white;

    overflow: hidden;

    border-radius: 20px;

}

.mini-product img {

    width: 100%;

    height: 250px;

    object-fit: cover;

}

.mini-info {

    padding: 20px;

}

.mini-info h3 {

    color: var(--charcoal);

    margin-bottom: 8px;

}

.mini-info p {

    color: var(--charcoal);

    font-weight: 600;

}

/* =========================
   BOTTOM SHOWCASE
========================= */

.bottom-showcase {

    display: grid;

    grid-template-columns: 1fr 1fr;

}

.testimonial-card {

    background: #0f0f0f;

    padding: 80px;

}

.newsletter-card {

    background: var(--mauve);

    padding: 80px;

}

.testimonial-card blockquote {

    font-family: 'Playfair Display', serif;

    font-size: 2rem;

    line-height: 1.4;

    margin: 30px 0;

}

.client-info {

    display: flex;

    align-items: center;

    gap: 15px;

}

.client-avatar {

    width: 50px;
    height: 50px;

    border-radius: 50%;

    background: rgba(255,255,255,.15);

}

.newsletter-card p {

    margin: 25px 0;

    font-size: 1.1rem;

    line-height: 1.8;

}

.newsletter-form {

    display: flex;

    gap: 10px;

}

.newsletter-form input {

    flex: 1;

    padding: 16px;

    border: none;

    outline: none;

}

.newsletter-form button {

    padding: 16px 30px;

    border: none;

    cursor: pointer;

    background: var(--charcoal);

    color: white;

}

/* =========================
   FOOTER
========================= */

.footer {

    background: #0b0b0b;

    padding: 80px 0;

}

.footer-grid {

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr
        1fr;

    gap: 50px;

}

.footer h3,
.footer h4 {

    margin-bottom: 20px;

}

.footer a {

    display: block;

    margin-bottom: 10px;

    color: rgba(255,255,255,.75);

}

.footer p {

    color: rgba(255,255,255,.65);

}
/* =========================
   HERO INDICATORS
========================= */
.hero-indicators {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 22px;
    z-index: 10;
}

.hero-indicator {
    font-size: .72rem;
    letter-spacing: .12em;
    color: rgba(246,242,234,.3);
    cursor: pointer;
    transition: color .3s;
    font-family: 'Inter', sans-serif;
    position: relative;
    padding-left: 18px;
}

.hero-indicator::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 1px;
    background: rgba(246,242,234,.3);
    transition: all .3s;
}

.hero-indicator.active {
    color: rgba(246,242,234,.9);
}

.hero-indicator.active::before {
    background: var(--gold);
    width: 14px;
}

/* =========================
   SCROLL TO DISCOVER
========================= */
.scroll-discover {
    position: absolute;
    bottom: 40px;
    right: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.scroll-discover span {
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(246,242,234,.5);
    font-family: 'Inter', sans-serif;
    writing-mode: vertical-lr;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(246,242,234,.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: .5; transform: scaleY(1); }
    50%       { opacity: 1;  transform: scaleY(.6) translateY(-20%); }
}

/* =========================
   JOURNAL SECTION
========================= */
.journal-section {
    padding: 100px 0;
    background: #F6F2EA;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.journal-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}

.journal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.journal-img {
    height: 220px;
}

.journal-body { padding: 24px; }

.journal-tag {
    display: inline-block;
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--mauve);
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.journal-body h3 {
    font-size: 1.05rem;
    color: var(--charcoal);
    margin-bottom: 10px;
    line-height: 1.4;
}

.journal-body p {
    font-size: .875rem;
    color: #777;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    margin-bottom: 16px;
}

.journal-link {
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--charcoal);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: color .2s;
}

.journal-link:hover { color: var(--mauve); }

/* =========================
   MOBILE MENU OVERLAY
========================= */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #0a0a12;
    z-index: 9999;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: right .35s cubic-bezier(.4,0,.2,1);
}

.mobile-menu.open { right: 0; }

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
    backdrop-filter: blur(4px);
}

.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-close {
    background: transparent;
    border: none;
    color: rgba(255,255,255,.6);
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 32px;
    padding: 4px;
}

.mobile-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 40px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav a {
    color: rgba(255,255,255,.7);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    transition: color .2s;
    text-decoration: none;
}

.mobile-nav a:hover { color: white; }
.mobile-nav a:last-child { border-bottom: none; color: var(--mauve); }

/* =========================
   HERO POSITION FIX
========================= */
.hero { position: relative; }

/* new arrivals product link color fix */
.product-link .product-info h3,
.product-link .product-info p { color: var(--charcoal); }

/* =========================
   JOURNAL RESPONSIVE
========================= */
@media(max-width:900px) {
    .journal-grid { grid-template-columns: repeat(2,1fr); }
    .hero-indicators { display: none; }
    .scroll-discover { display: none; }
}

@media(max-width:600px) {
    .journal-grid { grid-template-columns: 1fr; }
}

/* =========================
   MOBILE — 480px (small phones)
========================= */
@media(max-width:480px){
    .hero-title{
        font-size: clamp(1.9rem, 8vw, 2.4rem) !important;
        line-height: 1.1;
    }
    .hero-buttons{
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .btn-primary, .btn-secondary{
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
        text-align: center;
        justify-content: center;
    }
    .hero-description{
        font-size: .95rem;
        max-width: 100%;
    }
    .hero-label{ font-size:.68rem; }
}

/* =========================
   MOBILE — 768px
========================= */
@media(max-width:768px){

    /* NAV */
    .nav-menu{ display:none; }
    .mobile-toggle{ display:block; }

    /* HERO — critical overflow fixes */
    .hero{
        overflow: hidden;
        padding-top: 100px;
    }
    .hero-container{
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center;
    }
    .hero-title{
        font-size: clamp(2rem, 7.5vw, 2.8rem) !important;
        line-height: 1.08;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .hero-content{ margin: auto; max-width: 100%; }
    .hero-buttons{
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    .btn-primary, .btn-secondary{
        padding: 15px 24px;
        font-size: .9rem;
    }
    .hero-image-wrapper{ transform: none !important; }
    .hero-image{ height: 400px !important; }
    .hero-description{ max-width: 100%; font-size: 1rem; }

    /* SCROLL INDICATOR */
    .scroll-discover{ display: none; }
    .hero-indicators{ display: none; }

    /* COLLECTIONS */
    .collections-grid{ grid-template-columns: 1fr !important; }

    /* NEW ARRIVALS */
    .products-grid{ grid-template-columns: repeat(2,1fr); }
    .section-header{ flex-direction:column; gap:16px; text-align:center; }

    /* PHILOSOPHY */
    .philosophy{ grid-template-columns: 1fr !important; }
    .philosophy-content{ padding: 50px 30px !important; }
    .philosophy-content h2{ font-size: clamp(2.4rem,7vw,3.5rem); }

    /* BEST SELLERS */
    .best-sellers-grid{ grid-template-columns: 1fr !important; }
    .featured-product{ min-height: 400px !important; }

    /* BOTTOM SHOWCASE */
    .bottom-showcase{ grid-template-columns: 1fr !important; }
    .testimonial-card, .newsletter-card{ padding: 50px 28px; }
    .testimonial-card blockquote{ font-size: 1.5rem; }
    .newsletter-form{ flex-direction: column; gap: 10px; }
    .newsletter-form input{ width: 100%; }
    .newsletter-form button{ width: 100%; }

    /* FOOTER */
    .footer-grid{ grid-template-columns: 1fr !important; gap: 30px; }

    /* JOURNAL */
    .journal-grid{ grid-template-columns: 1fr !important; }
}

/* =========================
   MOBILE — 1024px (tablets/landscape)
========================= */
@media(max-width:1024px){
    .hero-container{
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .hero-title{ font-size: clamp(2.6rem, 5vw, 4.5rem); }
    .hero-content{ margin: auto; }
    .hero-buttons{ justify-content: center; }
    .products-grid{ grid-template-columns: repeat(2,1fr); }
    .best-sellers-grid{ grid-template-columns: 1fr !important; }
}
