﻿:root {
  --ink: #111;
  --ink-soft: rgba(17, 17, 17, 0.88);
  --ink-faint: rgba(17, 17, 17, 0.45);
  --foam: #f5f5f5;
  --paper: #fff;
  --line: #e8e8e8;
  --mute: #f0f0f0;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(1.25rem, 3.5vw, 2.75rem);
  --nav-size: clamp(0.8rem, 1.15vw, 0.9rem);
  --font: Helvetica, "Helvetica Neue", sans-serif;
}

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

html,
body {
  height: 100%;
}

html {
  font-size: 130%;
}

body {
  font-family: var(--font);
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  line-height: 1.45;
  color: var(--ink);
  background: #0a0908;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

img,
video {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —Shared navigation / switch controls —*/
.global-nav {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
}

.global-nav a,
.global-nav button {
  pointer-events: auto;
  font-family: var(--font);
  font-size: var(--nav-size);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: none;
  color: var(--ink);
  text-shadow: none;
  transition: color 0.35s var(--ease), opacity 0.35s var(--ease);
}

.global-nav a:hover,
.global-nav button:hover {
  opacity: 0.55;
}

.global-nav a:focus-visible,
.global-nav button:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

.nav-shop {
  position: absolute;
  left: var(--pad);
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
}

.nav-shop.is-hidden {
  display: none;
}

.nav-shop .arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease);
}

.nav-shop:hover .arrow {
  transform: translateX(4px);
}

.nav-instagram {
  position: absolute;
  left: var(--pad);
  bottom: var(--pad);
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
}

.nav-index {
  position: absolute;
  right: var(--pad);
  top: var(--pad);
  min-width: 1.5em;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.nav-enter {
  animation: navIn 1.1s var(--ease) both;
}

.nav-shop.nav-enter {
  animation-delay: 0.55s;
}

.nav-instagram.nav-enter {
  animation-delay: 0.75s;
}

.nav-index.nav-enter {
  animation-delay: 0.35s;
}

@keyframes navIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .nav-shop {
    top: auto;
    bottom: calc(var(--pad) + 2.25rem);
    transform: none;
  }
}



