:root {
  --ink: #11121a;
  --muted: #70717c;
  --paper: #f6f5f1;
  --card: #fff;
  --line: #deded8;
  --violet: #6e55ff;
  --pink: #ff5c91;
  --lime: #d7f26b;
  --shadow: 0 18px 50px rgba(20, 20, 35, 0.09);
}

/* Shared navigation and policy pages */
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 17px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}
.topbar.nav-open .menu-toggle span { opacity: 0; }
.topbar.nav-open .menu-toggle::before { transform: translateY(5px) rotate(45deg); }
.topbar.nav-open .menu-toggle::after { transform: translateY(-5px) rotate(-45deg); }
.policy-page,
.empty-page {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 90px;
}
.policy-page h1,
.empty-page h1 {
  margin: 0 0 24px;
  font-size: clamp(42px, 8vw, 78px);
  line-height: .95;
  letter-spacing: -.06em;
}
.policy-page h2 { margin: 42px 0 12px; }
.policy-page p,
.policy-page li,
.empty-page p { color: var(--muted); line-height: 1.75; }
:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 3px;
}
@media (max-width: 700px) {
  .topbar { padding-inline: 18px; }
  .topbar .icon-btn { margin-left: auto; }
  .menu-toggle { display: grid; place-content: center; }
  .topbar nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    display: flex;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(250, 249, 245, .98);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }
  .topbar nav a { padding: 13px 14px; border-radius: 10px; }
  .topbar nav a:hover { background: rgba(111, 78, 242, .08); }
  .topbar.nav-open nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
.topbar {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 245, 241, 0.86);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 14px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
}
.topbar nav {
  display: flex;
  gap: 28px;
  color: #555661;
  font-size: 14px;
}
.topbar nav a:hover,
.text-link:hover {
  color: var(--violet);
}
.icon-btn {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
}
.hero {
  min-height: 650px;
  padding: 8vw 9vw 7vw;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 25%, #d9d0ff 0, #eee9ff 18%, transparent 43%),
    var(--paper);
}
.eyebrow {
  font:
    500 11px/1.2 "DM Mono",
    monospace;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin: 0 0 16px;
}
.hero h1 {
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.07em;
  margin: 0 0 30px;
  font-weight: 600;
}
.hero h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--violet);
}
.hero-text {
  max-width: 480px;
  color: #646570;
  line-height: 1.7;
  font-size: 17px;
}
.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
}
.button {
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}
.button.primary {
  background: var(--ink);
  color: #fff;
}
.button.outline {
  background: transparent;
  border: 1px solid var(--ink);
}
.text-link {
  font-size: 14px;
  font-weight: 600;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.hero-orbit {
  height: 390px;
  position: relative;
  display: grid;
  place-items: center;
}
.orbit-ring {
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(110, 85, 255, 0.35);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(110, 85, 255, 0.06),
    0 0 0 70px rgba(110, 85, 255, 0.035);
}
.orbit-center {
  font-family: Georgia, serif;
  font-size: 100px;
  color: #fff;
  background: var(--violet);
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  transform: rotate(-8deg);
}
.orbit-card {
  position: absolute;
  padding: 13px 16px;
  background: var(--card);
  box-shadow: var(--shadow);
  font:
    11px/1.4 "DM Mono",
    monospace;
  letter-spacing: 0.1em;
}
.orbit-card strong {
  font-family: "Space Grotesk";
  font-size: 15px;
  letter-spacing: 0;
}
.card-a {
  top: 45px;
  right: 3%;
  transform: rotate(7deg);
  border-bottom: 4px solid var(--pink);
}
.card-b {
  bottom: 50px;
  left: 0;
  transform: rotate(-8deg);
  border-bottom: 4px solid var(--lime);
}
.collection-strip {
  padding: 70px 9vw;
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 16px;
  background: #171821;
  color: #fff;
}
.collection-strip h2 {
  font-size: 43px;
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 0;
}
.collection-card {
  padding: 24px;
  min-height: 205px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  transition: transform 0.25s;
}
.collection-card:hover {
  transform: translateY(-6px);
}
.collection-card span {
  font: 11px "DM Mono";
  opacity: 0.55;
}
.collection-card h3 {
  margin: 20px 0 0;
  font-size: 25px;
  letter-spacing: -0.05em;
}
.collection-card p {
  margin: 5px 0;
  color: #555;
  font-size: 13px;
}
.collection-card a {
  font-size: 13px;
  font-weight: 600;
}
.accent {
  background: var(--lime);
}
.dark {
  background: var(--violet);
  color: #fff;
}
.dark p,
.dark a {
  color: #eee;
}
.pale {
  background: #f4d5de;
}
.catalog-section {
  padding: 90px 9vw;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 38px;
}
.section-heading h2 {
  font-size: 52px;
  letter-spacing: -0.06em;
  margin: 0;
}
.section-note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  text-align: right;
}
.toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 11px 15px;
  flex: 1;
  min-width: 240px;
}
.search span {
  font-size: 23px;
  color: var(--muted);
}
.search input {
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  font-size: 14px;
}
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
}
.chip.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
select {
  border: 1px solid var(--line);
  background: var(--card);
  padding: 0 14px;
  color: var(--ink);
  min-width: 150px;
}
.catalog-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 38px;
}
.filter-panel {
  border-right: 1px solid var(--line);
  padding-right: 24px;
}
.filter-block {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.filter-block h4 {
  margin: 0 0 15px;
  font-size: 13px;
}
.filter-block label {
  display: flex;
  gap: 8px;
  margin: 11px 0;
  color: #666;
  font-size: 13px;
}
.filter-block input {
  accent-color: var(--violet);
}
.results-meta {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 14px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  min-width: 0;
  cursor: pointer;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  animation: rise 0.45s both;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.product-image {
  height: 220px;
  background: #efeee9;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.product-image .no-image {
  font-family: Georgia, serif;
  font-size: 46px;
  color: #c8c6c0;
}
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--lime);
  font: 10px "DM Mono";
  padding: 6px 8px;
}
.product-info {
  padding: 17px;
}
.product-info h3 {
  font-size: 16px;
  line-height: 1.2;
  margin: 0 0 10px;
  letter-spacing: -0.025em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}
.price {
  color: var(--ink);
  font-weight: 600;
}
.load-more {
  display: block;
  margin: 34px auto 0;
}
footer {
  padding: 58px 9vw;
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.6fr;
  gap: 50px;
  background: #eae9e3;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
footer a {
  display: block;
  margin: 8px 0;
}
.footer-brand p,
.footer-copy {
  color: var(--muted);
  line-height: 1.6;
}
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 20;
}
.modal.open {
  display: block;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 20, 0.55);
}
.modal-card {
  position: relative;
  background: var(--paper);
  max-width: 850px;
  max-height: 90vh;
  overflow: auto;
  margin: 5vh auto;
  padding: 40px;
}
.modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  border: 0;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
}
.modal-product {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
}
.modal-product img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: #eee;
}
.modal-product h2 {
  font-size: 35px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 4px 0 14px;
}
.modal-product p {
  line-height: 1.7;
  color: #5e5e67;
}
.modal-product ul {
  padding-left: 19px;
  color: #5e5e67;
  line-height: 1.7;
}
.modal-cta {
  margin-top: 20px;
}
@media (max-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .collection-strip {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .catalog-section {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
@media (max-width: 700px) {
  .topbar nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
  }
  .hero-orbit {
    height: 300px;
  }
  .orbit-ring {
    width: 250px;
    height: 250px;
  }
  .orbit-center {
    width: 125px;
    height: 125px;
    font-size: 70px;
  }
  .section-heading {
    display: block;
  }
  .section-heading h2 {
    font-size: 40px;
  }
  .section-note {
    text-align: left;
  }
  .catalog-layout {
    display: block;
  }
  .filter-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 18px;
    margin-bottom: 25px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
  }
  .product-image {
    height: 170px;
  }
  .product-info {
    padding: 12px;
  }
  .product-info h3 {
    font-size: 14px;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 45px 7vw;
    gap: 20px;
  }
  .modal-card {
    margin: 0;
    height: 100vh;
    max-height: none;
    padding: 45px 20px;
  }
  .modal-product {
    grid-template-columns: 1fr;
  }
  .modal-product img {
    height: 230px;
  }
}
