@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f5f2ec;
  --surface: #fbfaf7;
  --text: #111111;
  --muted: #66635c;
  --line: #d9d2c8;
  --accent: #111111;
  --shadow: 0 12px 32px rgba(0,0,0,.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}
body.drawer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
.container { width: min(1200px, calc(100% - 2rem)); margin: 0 auto; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .82rem;
  color: var(--muted);
  margin: 0 0 1rem;
}
.lead { color: var(--muted); font-size: 1.1rem; max-width: 720px; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(245,242,236,.86);
  border-bottom: 1px solid rgba(217,210,200,.6);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
}
.brand { display: inline-flex; align-items: center; gap: .85rem; font-weight: 800; font-size: 1.1rem; }
.brand-mark { width: 36px; height: 36px; }
.desktop-nav { display: flex; gap: 2rem; align-items: center; }
.desktop-nav a { color: var(--muted); font-weight: 600; }
.desktop-nav a.active, .desktop-nav a:hover { color: var(--text); }
.menu-toggle {
  display: none; width: 48px; height: 48px; border: 1px solid var(--line); background: var(--surface);
  align-items: center; justify-content: center; flex-direction: column; gap: 6px; cursor: pointer;
}
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--text); }
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.35); z-index: 58;
}
.mobile-drawer {
  position: fixed; right: 0; top: 0; bottom: 0; width: min(360px, 86vw); background: var(--surface); z-index: 60;
  transform: translateX(102%); transition: transform .26s ease; padding: 1.2rem; border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 1rem;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; font-weight: 700; }
.drawer-close { border: none; background: none; font-size: 2rem; cursor: pointer; line-height: 1; }
.drawer-nav { display: grid; border-top: 1px solid var(--line); }
.drawer-nav a { padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1.1rem; font-weight: 700; }
.drawer-meta { margin-top: auto; color: var(--muted); font-size: .95rem; }
.hero {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; padding: 2rem 0 3rem;
}
.hero-copy { padding: 2rem 0; }
.hero-copy h1, .page-hero h1 { font-size: clamp(3rem, 8vw, 6.2rem); line-height: .95; margin: 0 0 1rem; letter-spacing: -0.05em; }
.hero-copy p { max-width: 640px; }
.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; padding: 1rem 1.35rem;
  background: var(--text); color: white; font-weight: 700; min-height: 52px;
}
.btn.secondary { background: transparent; color: var(--text); border: 1px solid var(--line); }
.hero-media, .feature-media { position: relative; min-height: 560px; background: #ece7df; overflow: hidden; }
.hero-media img, .feature-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: auto 1.5rem 1.5rem 1.5rem; background: rgba(255,255,255,.84); padding: 1rem 1.2rem; max-width: 320px; }
.page-hero { padding: 3rem 0 1rem; }
.category-rail { padding: 1rem 0 3rem; }
.category-links { display: grid; gap: .5rem; }
.category-links a {
  display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid var(--line);
  font-size: clamp(1.35rem, 4vw, 2.4rem); font-weight: 800; letter-spacing: -0.04em;
}
.section { padding: 2rem 0 4rem; }
.section-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.collection-card, .product-card { background: var(--surface); box-shadow: var(--shadow); overflow: hidden; }
.collection-card img, .product-image { width: 100%; aspect-ratio: 4/4.8; object-fit: cover; background: #ece7df; }
.collection-card-body, .product-body { padding: 1rem; }
.collection-card h3, .product-card h3 { margin: 0 0 .5rem; font-size: 1.35rem; letter-spacing: -0.04em; }
.collection-card p:last-child, .product-body p { color: var(--muted); margin: 0; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.product-category { text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; color: var(--muted); margin-bottom: .5rem; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: .8rem; font-weight: 700; }
.product-meta a { color: var(--muted); font-size: .92rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: stretch; }
.feature-panel { background: var(--surface); padding: 2rem; }
.info-list { display: grid; gap: 1rem; }
.info-list div { padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.filter-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-bottom: 1.25rem; }
.chips { display: flex; gap: .75rem; flex-wrap: wrap; }
.chip { border: 1px solid var(--line); padding: .78rem 1rem; color: var(--muted); font-weight: 700; background: var(--surface); }
.chip.active { color: var(--text); border-color: var(--text); }
.catalog-header { display: flex; align-items: end; justify-content: space-between; gap: 1rem; padding-bottom: 1.5rem; }
.catalog-header h1 { margin-bottom: 0; }
.product-detail { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; padding: 2.5rem 0 4rem; }
.detail-image { background: #ece7df; min-height: 620px; }
.detail-image img { width: 100%; height: 100%; object-fit: cover; }
.detail-panel { background: var(--surface); padding: 2rem; align-self: start; box-shadow: var(--shadow); }
.price { font-size: 1.2rem; font-weight: 800; margin: 1rem 0; }
.store-note {
  padding: 1rem 1.1rem; background: #efebe4; border-left: 3px solid var(--text); color: var(--text); font-weight: 600;
}
.site-footer { background: #111111; color: white; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; padding: 2.5rem 0; }
.footer-text, .site-footer a { color: rgba(255,255,255,.78); }
.mobile-dock {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: .8rem; z-index: 40;
  display: none; gap: .4rem; background: rgba(255,255,255,.94); border: 1px solid rgba(217,210,200,.9); padding: .45rem; box-shadow: var(--shadow);
}
.mobile-dock a { padding: .75rem .9rem; color: var(--muted); font-weight: 700; }
.mobile-dock a.active { color: var(--text); background: #f1ece4; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero, .split, .product-detail, .section-grid, .footer-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-media, .feature-media, .detail-image { min-height: 460px; }
  .mobile-dock { display: flex; }
  body { padding-bottom: 5rem; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 1.2rem, 1200px); }
  .hero { gap: 1rem; }
  .hero-copy { padding-top: .5rem; }
  .hero-media, .feature-media { min-height: 380px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .detail-panel { padding: 1.35rem; }
  .chips { overflow-x: auto; flex-wrap: nowrap; padding-bottom: .25rem; }
  .chip { white-space: nowrap; }
}
