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

:root {
  --cream: #F4F0E8;
  --sand: #DDD8CC;
  --linen: #C8C0B4;
  --near-black: #1A1C18;
  --dark-earth: #2C2A24;
  --rust: #7A3A20;
  --rust-dark: #5C3018;
  --lichen: #4A5A3C;
  --muted: #6B6050;
  --light-muted: #8A7A68;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--near-black); font-size: 15px; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* TOP BAR */
.top-bar { background: var(--near-black); color: rgba(244,240,232,0.45); display: flex; justify-content: center; gap: 3rem; padding: 0.75rem 2.5rem; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; flex-wrap: wrap; }
.top-bar span { display: flex; align-items: center; gap: 6px; }
.tdot { width: 3px; height: 3px; background: var(--rust); border-radius: 50%; flex-shrink: 0; }

/* CHARITY BAR */
.charity-bar { background: var(--lichen); padding: 0.7rem 2.5rem; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.charity-bar-label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,240,232,0.5); }
.charity-bar-amount { font-size: 12px; color: rgba(244,240,232,0.8); }
.charity-bar-link { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,240,232,0.5); text-decoration: underline; text-underline-offset: 3px; }
.charity-bar-link:hover { color: rgba(244,240,232,0.8); }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: var(--cream); border-bottom: 0.5px solid var(--sand); padding: 0 2.5rem; height: 60px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; letter-spacing: 0.22em; text-transform: uppercase; }
.nav-logo span { color: var(--rust); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--rust); }
.nav-cart { background: none; border: none; font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--near-black); cursor: pointer; transition: color 0.2s; }
.nav-cart:hover { color: var(--rust); }

/* BUTTONS */
.btn { display: inline-block; font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; border: none; transition: all 0.2s; padding: 0.85rem 2rem; }
.btn-dark { background: var(--near-black); color: var(--cream); }
.btn-dark:hover { background: var(--dark-earth); }
.btn-outline { background: transparent; border: 0.5px solid var(--sand); color: var(--muted); }
.btn-outline:hover { border-color: var(--rust); color: var(--rust); }
.btn-rust { background: var(--rust); color: var(--cream); }
.btn-rust:hover { background: var(--rust-dark); }
.btn-light { background: transparent; border: 0.5px solid rgba(244,240,232,0.25); color: rgba(244,240,232,0.8); }
.btn-light:hover { background: rgba(244,240,232,0.1); }
.btn-light-outline { background: transparent; border: 0.5px solid rgba(244,240,232,0.3); color: rgba(244,240,232,0.7); padding: 0.7rem 1.6rem; font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; }
.btn-light-outline:hover { background: rgba(244,240,232,0.1); }
.btn-white { background: var(--cream); color: var(--rust); border: none; padding: 0.85rem 2rem; font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; }
.btn-white:hover { background: var(--sand); }

/* HERO */
.hero { display: grid; grid-template-columns: 55% 45%; min-height: calc(100vh - 120px); max-height: 820px; }
.hero-text { padding: 5rem 3rem 5rem 2.5rem; display: flex; flex-direction: column; justify-content: center; gap: 1.25rem; }
.eyebrow { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--lichen); font-weight: 400; }
h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(42px, 5vw, 66px); font-weight: 300; line-height: 1.05; }
h1 em { font-style: italic; color: var(--rust); }
.hero-sub { font-size: 14px; color: var(--muted); max-width: 400px; font-weight: 300; line-height: 1.75; }
.btn-row { display: flex; gap: 1rem; align-items: center; margin-top: 0.5rem; flex-wrap: wrap; }
.hero-image { background: var(--sand); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.hero-scarf-placeholder { display: flex; align-items: center; justify-content: center; }
.scarf-svg { width: 160px; opacity: 0.8; }

/* SECTIONS */
section { padding: 5rem 2.5rem; }
.section-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 0.5rem; }
h2 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; }
h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 300; line-height: 1.15; }
.see-all { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lichen); cursor: pointer; transition: color 0.2s; }
.see-all:hover { color: var(--rust); }

/* PRODUCT GRID */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.product-card { cursor: pointer; transition: transform 0.2s; }
.product-card:hover { transform: translateY(-4px); }
.prod-img { aspect-ratio: 3/4; position: relative; overflow: hidden; margin-bottom: 12px; background: var(--sand); }
.prod-img img { transition: transform 0.4s; }
.product-card:hover .prod-img img { transform: scale(1.03); }
.prod-img-placeholder { width: 100%; height: 100%; }
.badge { position: absolute; top: 10px; left: 10px; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 8px; z-index: 1; }
.prod-name { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 400; margin-bottom: 3px; }
.prod-detail { font-size: 11px; color: var(--muted); margin-bottom: 6px; letter-spacing: 0.04em; }
.prod-price-row { display: flex; align-items: center; gap: 6px; }
.prod-was { font-size: 12px; color: var(--muted); text-decoration: line-through; }
.prod-price { font-size: 15px; font-weight: 500; }
.product-skeleton { aspect-ratio: 3/4; background: linear-gradient(90deg, var(--sand) 25%, var(--linen) 50%, var(--sand) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 2px; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* STORY */
.story-section { display: grid; grid-template-columns: 1fr 1fr; background: var(--dark-earth); padding: 0; }
.story-image { position: relative; overflow: hidden; min-height: 480px; }
.story-text { padding: 5rem 3.5rem; display: flex; flex-direction: column; justify-content: center; gap: 1.25rem; }
.story-eyebrow { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lichen); }
.story-text h3 { color: var(--cream); }
.story-text p { font-size: 14px; line-height: 1.8; color: rgba(244,240,232,0.6); font-weight: 300; max-width: 380px; }

/* ARCHIVE */
.archive-preview { background: var(--cream); }
.archive-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-style: italic; color: var(--muted); }
.archive-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.archive-card { opacity: 0.65; transition: opacity 0.2s; }
.archive-card:hover { opacity: 0.85; }
.archive-img { aspect-ratio: 3/4; position: relative; overflow: hidden; margin-bottom: 8px; background: var(--sand); }
.sold-stamp { position: absolute; bottom: 8px; left: 8px; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); background: var(--near-black); padding: 3px 8px; z-index: 1; }
.archive-name { font-family: 'Cormorant Garamond', serif; font-size: 15px; color: var(--muted); margin-bottom: 2px; }
.archive-material { font-size: 10px; color: var(--light-muted); }
.archive-skeleton { aspect-ratio: 3/4; background: linear-gradient(90deg, var(--sand) 25%, var(--linen) 50%, var(--sand) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 2px; }

/* CTA */
.cta-section { background: var(--rust); text-align: center; padding: 5rem 2.5rem; }
.cta-quote { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; font-style: italic; color: var(--cream); margin-bottom: 0.75rem; }
.cta-sub { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,240,232,0.6); margin-bottom: 2rem; }

/* FOOTER */
footer { background: var(--near-black); padding: 2rem 2.5rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,240,232,0.7); }
.footer-logo span { color: var(--rust); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 11px; color: rgba(244,240,232,0.35); letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: rgba(244,240,232,0.7); }
.footer-copy { font-size: 11px; color: rgba(244,240,232,0.25); letter-spacing: 0.06em; }

/* EMPTY */
.empty-msg { font-size: 14px; color: var(--muted); font-style: italic; grid-column: 1/-1; padding: 2rem 0; }
.empty-msg a { color: var(--rust); text-decoration: underline; text-underline-offset: 3px; }

/* PAGE HEADER */
.page-header { padding: 4rem 2.5rem 2rem; border-bottom: 0.5px solid var(--sand); }
.page-header h1 { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; margin-bottom: 0.5rem; }
.page-header p { font-size: 14px; color: var(--muted); font-weight: 300; }

/* MOBILE */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; max-height: none; }
  .hero-image { min-height: 300px; }
  .story-section { grid-template-columns: 1fr; }
  .story-image { min-height: 280px; }
  .story-text { padding: 3rem 2rem; }
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  section { padding: 3.5rem 1.5rem; }
  .top-bar { gap: 1rem; padding: 0.75rem 1.5rem; }
  h1 { font-size: 38px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.hero-text > * { animation: fadeUp 0.7s ease both; }
.hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-text > *:nth-child(2) { animation-delay: 0.2s; }
.hero-text > *:nth-child(3) { animation-delay: 0.3s; }
.hero-text > *:nth-child(4) { animation-delay: 0.4s; }

/* DARK NAV */
.nav-dark { background: var(--near-black); border-bottom: none; }
.nav-logo-light { color: rgba(244,240,232,0.9); }
.nav-logo-light span { color: var(--rust); }
.nav-light { color: rgba(244,240,232,0.45) !important; }
.nav-light:hover { color: rgba(244,240,232,0.9) !important; }

/* STATEMENT BAR */
.statement-bar { background: var(--rust); padding: 2.5rem; text-align: center; }
.statement-quote { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; font-style: italic; color: var(--cream); margin-bottom: 0.5rem; }
.statement-sub { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,240,232,0.6); }
