:root {
  --ink-900: #1A1917;
  --ink-800: #26241F;
  --ink-700: #3A3733;
  --stone-600: #5C5851;
  --stone-500: #807B72;
  --stone-400: #A8A29A;
  --stone-300: #CFC9C0;
  --stone-200: #E6E2DB;
  --stone-100: #F1EEE9;
  --stone-50: #FAF9F7;
  --accent-600: #B5613C;
  --accent-500: #CF7348;
  --accent-400: #E08B60;
  --paper: #FFFFFE;
  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --text-2xs: .625rem;
  --text-xs: .6875rem;
  --text-sm: .8125rem;
  --text-base: .9375rem;
  --text-lg: 1.0625rem;
  --text-xl: 1.25rem;
  --display-sm: clamp(1.75rem, 2.8vw, 2.3rem);
  --display-md: clamp(2.3rem, 4.2vw, 3.5rem);
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-40: 10rem;
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --shadow-hair: 0 1px 2px rgba(26, 25, 23, .04);
  --shadow-lift: 0 20px 50px -24px rgba(26, 25, 23, .22);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink-900);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.62;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink-900);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.16;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

img,
svg {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

.wrap {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 28px;
}

.btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 1.05rem 1.9rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: .15em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform .45s var(--ease),
    background .45s var(--ease),
    color .45s var(--ease),
    border-color .45s var(--ease),
    box-shadow .45s var(--ease);
}

.btn:active,
.woocommerce .button:active {
  transform: translateY(1px) scale(.99);
}

.btn--dark,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button {
  border-color: var(--ink-900);
  background: var(--ink-900);
  color: var(--paper);
}

.btn--dark:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .button:hover {
  border-color: var(--accent-600);
  background: var(--accent-600);
  color: var(--paper);
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}

.btn--line {
  border-color: var(--stone-300);
  background: transparent;
  color: var(--ink-700);
}

.btn--line:hover {
  border-color: var(--ink-900);
  color: var(--ink-900);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--stone-200);
  background: rgba(255, 255, 254, .88);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
}

.header-inner {
  display: flex;
  height: 68px;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: var(--ink-900);
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: clamp(1.5rem, 3.4vw, 3rem);
}

.nav a {
  color: var(--stone-600);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color .4s var(--ease);
}

.nav a:hover,
.nav .current-menu-item > a {
  color: var(--ink-900);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  border: 0;
  background: none;
  color: var(--stone-600);
  cursor: pointer;
  transition: color .35s var(--ease);
}

.icon-btn:hover {
  color: var(--ink-900);
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  min-width: 15px;
  height: 15px;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border-radius: var(--radius-pill);
  background: var(--accent-500);
  color: var(--paper);
  font-size: .5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  transform: translate(35%, -35%);
}

.site-footer {
  padding: clamp(4rem, 8vw, 6rem) 0 var(--space-8);
  background: var(--ink-900);
  color: rgba(255, 255, 254, .5);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 254, .08);
}

.site-footer .logo,
.foot-brand .logo {
  color: var(--paper);
}

.foot-brand p {
  max-width: 32ch;
  margin: var(--space-5) 0 0;
  color: rgba(255, 255, 254, .42);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.8;
}

.foot-col h4 {
  margin-bottom: var(--space-5);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.foot-col a {
  display: block;
  padding: var(--space-2) 0;
  color: rgba(255, 255, 254, .45);
  font-size: var(--text-base);
  font-weight: 300;
  transition: color .4s var(--ease);
}

.foot-col a:hover {
  color: var(--accent-400);
}

.foot-base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-8);
  color: rgba(255, 255, 254, .3);
  font-size: var(--text-xs);
  letter-spacing: .08em;
}

.ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-500);
}

.card {
  overflow: hidden;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #FFFFFF;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.card-meta {
  padding: var(--space-4) var(--space-5) var(--space-5);
}

.card-meta h3 {
  margin-bottom: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
}

.card-meta p,
.card-meta span {
  color: var(--stone-500);
  font-size: var(--text-sm);
}

.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.rv.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .rv {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .wrap {
    padding-inline: 18px;
  }

  .foot-grid {
    grid-template-columns: 1fr;
  }
}
