@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,400&family=Montserrat:wght@200;300;400&display=swap');

:root {
    --bg-color: #FFFFFF;
    --text-main: #111111;
    --text-light: #777777;
    --accent: #9B7E6B; /* Muted floral accent */
    --line: #E5E5E5;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Custom Selection */
::selection {
    background-color: var(--accent);
    color: var(--bg-color);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    padding: 30px 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--text-main);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.cart-btn {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-main);
    border: 1px solid var(--line);
    padding: 10px 20px;
    transition: var(--transition-fast);
}

.cart-btn:hover {
    background-color: var(--text-main);
    color: var(--bg-color);
}

/* Hero Editorial */
.hero {
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 4fr 5fr 3fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

.hero-text-large {
    font-family: var(--font-heading);
    font-size: 7vw;
    line-height: 0.9;
    font-weight: 300;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.hero-text-large i {
    font-style: italic;
    color: var(--accent);
}

.hero-img-main {
    grid-column: 2;
    position: relative;
    z-index: 5;
    height: 70vh;
    overflow: hidden;
}

.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.hero-img-main:hover img {
    transform: scale(1.03);
}

.hero-desc {
    grid-column: 1;
    max-width: 300px;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.8;
}

.hero-desc p { margin-bottom: 20px; }

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: var(--text-main);
    border-bottom: 1px solid var(--text-main);
    padding-bottom: 4px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.hero-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* Collection Section */
.collection {
    padding: 150px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
}

.section-link {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-main);
}

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

/* Product Card - Overlap Style */
.product-card {
    position: relative;
    cursor: pointer;
}

.product-img {
    height: 500px;
    background-color: #F9F9F9;
    overflow: hidden;
    margin-bottom: 20px;
}

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

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

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

.product-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
}

.product-price {
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* Manifesto Split */
.split-section {
    padding: 100px 0;
    background-color: #FAFAFA;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.split-text h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
}

.split-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 450px;
}

.split-img {
    height: 700px;
    position: relative;
}

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

.split-img::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--line);
    z-index: -1;
}

/* Footer Editorial */
footer {
    padding: 100px 0 40px;
    border-top: 1px solid var(--line);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.footer-brand h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--text-main);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-text-large { position: relative; transform: none; top: 0; left: 0; font-size: 4rem; margin-bottom: 30px; }
    .hero-img-main { grid-column: 1; height: 50vh; order: -1; }
    .hero-desc { grid-column: 1; max-width: 100%; text-align: center; }
    
    .product-grid { grid-template-columns: 1fr 1fr; }
    .split-grid { grid-template-columns: 1fr; gap: 60px; }
    .split-img { height: 50vh; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .product-grid { grid-template-columns: 1fr; }
    .product-img { height: 400px; }
    .footer-top { flex-direction: column; gap: 40px; }
    .footer-links { flex-direction: column; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}
