@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@400;500;600&display=swap');
:root {
    --bg: #fafaf9;
    --text: #1c1917;
    --muted: #78716c;
    --accent: #1c1917;
    --wrap: 1120px;
}
body.has-proto-bar { font-family: 'Montserrat', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }
.nav { display: flex; justify-content: space-between; align-items: center; padding: 1.75rem 0; border-bottom: 1px solid #e7e5e4; }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 600; letter-spacing: 0.15em; text-decoration: none; color: var(--text); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }
.nav-links a:hover { color: var(--text); }
.hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; padding: 4rem 0; align-items: center; }
.hero-img { aspect-ratio: 3/4; overflow: hidden; background: #e7e5e4; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.collection-label { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 500; line-height: 1.1; margin-bottom: 1rem; }
.price { font-size: 1.35rem; font-weight: 500; margin: 1.25rem 0; }
.desc { color: var(--muted); font-size: 0.92rem; max-width: 28rem; margin-bottom: 2rem; line-height: 1.75; }
.btn { display: inline-block; padding: 1rem 2.5rem; background: var(--accent); color: #fff; text-decoration: none; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; border: none; cursor: pointer; transition: opacity .2s; }
.btn:hover { opacity: 0.85; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--text); margin-left: 0.75rem; }
.collection { padding: 4rem 0; border-top: 1px solid #e7e5e4; }
.collection h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; text-align: center; margin-bottom: 2.5rem; font-weight: 500; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.item { text-decoration: none; color: inherit; }
.item-img { aspect-ratio: 3/4; overflow: hidden; background: #e7e5e4; margin-bottom: 0.85rem; }
.item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.item:hover .item-img img { transform: scale(1.03); }
.item-name { font-size: 0.8rem; letter-spacing: 0.05em; }
.item-price { font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; }
.footer { padding: 3rem 0; text-align: center; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); border-top: 1px solid #e7e5e4; }
@media (max-width: 900px) { .hero, .grid { grid-template-columns: 1fr; } .nav-links { display: none; } }
