:root {
  --shell: #faf6f2;
  --stone: #ece2da;
  --stone-deep: #ddcfc4;
  --ember: #c05621;
  --ember-ink: #a8481a;
  --ember-glow: #e08a4f;
  --iron: #332c27;
  --char: #1c1815;
  --muted: #6e635c;
  --line: rgba(51, 44, 39, 0.16);
  --line-dark: rgba(250, 246, 242, 0.18);

  --s1: 4px;
  --s2: 8px;
  --s3: 12px;
  --s4: 16px;
  --s5: 24px;
  --s6: 32px;
  --s7: 48px;
  --s8: 64px;
  --s9: 96px;
  --s10: 128px;

  --t-cap: 0.8rem;
  --t-base: 1rem;
  --t-md: 1.25rem;
  --t-lg: 1.5625rem;
  --t-xl: 1.9531rem;
  --t-2xl: 2.4414rem;
  --t-3xl: 3.0518rem;

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --container: 1200px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--s5));
}

body {
  margin: 0;
  background: var(--shell);
  color: var(--iron);
  font-family: var(--body);
  font-size: var(--t-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 40;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s6);
}

.cap {
  font-family: var(--body);
  font-size: var(--t-cap);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.5;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--char);
  color: var(--shell);
  padding: var(--s3) var(--s5);
  z-index: 100;
}

.skip:focus {
  left: var(--s4);
  top: var(--s2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--char);
  color: var(--shell);
  border-bottom: 1px solid var(--line-dark);
}

.site-header .container {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: var(--s5);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  text-decoration: none;
  padding: var(--s3) 0;
  margin-right: auto;
}

.brand-mark {
  width: 22px;
  height: 26px;
  flex: none;
}

.brand-name {
  font-family: var(--display);
  font-size: var(--t-md);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-variation-settings: "opsz" 20;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--s6);
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  text-decoration: none;
  color: var(--shell);
  font-size: var(--t-cap);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}

.nav a:hover,
.nav a[aria-current="page"] {
  border-bottom-color: var(--ember-glow);
  color: var(--ember-glow);
}

.currency {
  display: inline-flex;
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  overflow: hidden;
}

.currency button {
  min-height: 48px;
  min-width: 56px;
  padding: 0 var(--s4);
  background: transparent;
  border: 0;
  color: var(--shell);
  font-family: var(--body);
  font-size: var(--t-cap);
  font-weight: 600;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.currency button[aria-pressed="true"] {
  background: var(--ember);
  color: #fff;
}

.nav-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  background: transparent;
  border: 1px solid var(--line-dark);
  color: var(--shell);
  font-size: var(--t-cap);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  background: var(--char) center/cover no-repeat;
  background-image:
    repeating-linear-gradient(135deg, rgba(250, 246, 242, 0.035) 0 2px, transparent 2px 13px),
    radial-gradient(120% 95% at 18% 105%, rgba(192, 86, 33, 0.4) 0%, rgba(28, 24, 21, 0) 62%);
  color: var(--shell);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 24, 21, 0.34) 0%, rgba(28, 24, 21, 0.78) 78%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: var(--s9) 0 var(--s8);
  max-width: 720px;
}

.hero .cap {
  color: var(--ember-glow);
  display: block;
  margin-bottom: var(--s5);
}

.hero h1 {
  font-size: clamp(2.4414rem, 6vw, 4.2rem);
  margin-bottom: var(--s5);
}

.hero h1 em {
  font-style: normal;
  display: block;
  color: var(--ember-glow);
}

.hero p {
  font-size: var(--t-md);
  max-width: 46ch;
  color: var(--stone);
  margin-bottom: var(--s6);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: var(--s3) var(--s6);
  font-size: var(--t-cap);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--body);
}

.btn-primary {
  background: var(--ember);
  color: #fff;
}

.btn-primary:hover {
  background: var(--ember-ink);
}

.btn-ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.btn-ghost:hover {
  background: rgba(250, 246, 242, 0.1);
}

.section {
  padding: var(--s9) 0;
}

.section-tight {
  padding: var(--s8) 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto var(--s8);
  text-align: center;
}

.section-head .cap {
  color: var(--ember-ink);
  display: block;
  margin-bottom: var(--s4);
}

.section-head h2 {
  font-size: clamp(var(--t-xl), 4vw, var(--t-3xl));
  margin-bottom: var(--s4);
}

.section-head p {
  color: var(--muted);
  font-size: var(--t-md);
}

.collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}

.collection {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.collection .media {
  aspect-ratio: 4 / 3;
}

.collection-body {
  padding: var(--s6);
}

.collection-body h3 {
  font-family: var(--body);
  font-size: var(--t-cap);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--s3);
}

.collection-body p {
  color: var(--muted);
}

.media {
  position: relative;
  background: var(--stone);
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media.is-empty::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(51, 44, 39, 0.05) 0 2px, transparent 2px 11px),
    linear-gradient(160deg, var(--stone) 0%, var(--stone-deep) 100%);
}

.media.is-empty::after {
  content: attr(data-label);
  position: absolute;
  left: var(--s5);
  bottom: var(--s5);
  font-size: var(--t-cap);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.catalog-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s3);
  padding-bottom: var(--s6);
  margin-bottom: var(--s7);
  border-bottom: 1px solid var(--line);
}

.catalog-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
}

.filter {
  min-height: 48px;
  padding: 0 var(--s5);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--iron);
  font-family: var(--body);
  font-size: var(--t-cap);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.filter[aria-pressed="true"] {
  background: var(--iron);
  border-color: var(--iron);
  color: var(--shell);
}

.catalog-count {
  margin-left: auto;
  color: var(--muted);
  font-size: var(--t-cap);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.card .media {
  aspect-ratio: 1 / 1;
}

.card-body {
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  flex: 1;
}

.card-cat {
  color: var(--ember-ink);
}

.card h3 {
  font-size: var(--t-md);
}

.card-note {
  color: var(--muted);
  font-size: 0.9375rem;
}

.plate {
  margin: var(--s2) 0 0;
  border-top: 1px solid var(--line);
}

.plate div {
  display: flex;
  justify-content: space-between;
  gap: var(--s4);
  padding: var(--s2) 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9375rem;
}

.plate dt {
  color: var(--muted);
  font-size: var(--t-cap);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

.plate dd {
  margin: 0;
  font-weight: 500;
}

.card-foot {
  margin-top: auto;
  padding-top: var(--s5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
}

.price {
  font-family: var(--display);
  font-size: var(--t-lg);
  font-variation-settings: "opsz" 30;
}

.price small {
  display: block;
  font-family: var(--body);
  font-size: var(--t-cap);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.card-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  font-size: var(--t-cap);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ember-ink);
}

.card-link:hover {
  color: var(--iron);
  border-bottom-color: var(--iron);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  align-items: center;
}

.split .media {
  aspect-ratio: 5 / 4;
}

.split h2 {
  font-size: clamp(var(--t-xl), 3.4vw, var(--t-2xl));
  margin-bottom: var(--s5);
}

.split .cap {
  color: var(--ember-ink);
  display: block;
  margin-bottom: var(--s4);
}

.split p {
  color: var(--muted);
  margin-bottom: var(--s4);
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
  margin-top: var(--s6);
  border-top: 1px solid var(--line);
  padding-top: var(--s5);
}

.facts dt {
  font-size: var(--t-cap);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.facts dd {
  margin: var(--s2) 0 0;
  font-family: var(--display);
  font-size: var(--t-md);
}

.band {
  background: var(--char);
  color: var(--shell);
  text-align: center;
  padding: var(--s9) 0;
}

.band h2 {
  font-size: clamp(var(--t-xl), 4vw, var(--t-2xl));
  margin-bottom: var(--s4);
}

.band p {
  color: var(--stone);
  max-width: 56ch;
  margin: 0 auto var(--s6);
}

.site-footer {
  background: var(--char);
  color: var(--stone);
  border-top: 1px solid var(--line-dark);
  padding: var(--s8) 0 var(--s7);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--s7);
  padding-bottom: var(--s7);
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand .brand-name {
  color: var(--shell);
  display: inline-block;
  margin-bottom: var(--s4);
}

.footer-brand p {
  color: #b9ada5;
  max-width: 34ch;
}

.footer-col h2 {
  font-family: var(--body);
  font-size: var(--t-cap);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember-glow);
  margin-bottom: var(--s4);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  text-decoration: none;
  color: var(--stone);
}

.footer-col a:hover {
  color: var(--ember-glow);
}

.footer-legal {
  padding-top: var(--s6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3) var(--s6);
  justify-content: space-between;
  color: #b9ada5;
  font-size: 0.9375rem;
}

.footer-legal p {
  max-width: 68ch;
}

.doc {
  padding: var(--s9) 0 var(--s8);
}

.doc-inner {
  max-width: 760px;
  margin: 0 auto;
}

.doc h1 {
  font-size: clamp(var(--t-2xl), 5vw, var(--t-3xl));
  margin-bottom: var(--s4);
}

.doc .cap {
  color: var(--ember-ink);
  display: block;
  margin-bottom: var(--s4);
}

.doc-meta {
  color: var(--muted);
  padding-bottom: var(--s6);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--s7);
}

.doc h2 {
  font-size: var(--t-lg);
  margin: var(--s8) 0 var(--s4);
}

.doc h3 {
  font-size: var(--t-md);
  margin: var(--s6) 0 var(--s3);
}

.doc p,
.doc li {
  color: var(--iron);
}

.doc p + p {
  margin-top: var(--s4);
}

.doc ul,
.doc ol {
  margin: var(--s4) 0 0;
  padding-left: var(--s5);
}

.doc li + li {
  margin-top: var(--s2);
}

.doc a {
  color: var(--ember-ink);
}

.doc .note {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--ember);
  padding: var(--s5) var(--s6);
  margin-top: var(--s6);
}

.doc .note p {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 2px solid var(--ember-glow);
  outline-offset: 3px;
}

@media (max-width: 960px) {
  .collections,
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
    gap: var(--s6);
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s6);
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 var(--s5);
  }

  .site-header .container {
    gap: var(--s3);
  }

  .brand {
    gap: var(--s2);
  }

  .brand-name {
    font-size: var(--t-base);
    letter-spacing: 0.16em;
  }

  .brand-mark {
    width: 18px;
    height: 21px;
  }

  .currency button {
    min-width: 48px;
    padding: 0 var(--s2);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--s2);
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--char);
    border-bottom: 1px solid var(--line-dark);
    padding: var(--s2) var(--s5) var(--s5);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    border-bottom: 1px solid var(--line-dark);
  }

  .collections,
  .grid {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: var(--s8) 0;
  }

  .hero {
    min-height: 68vh;
  }

  .card-foot {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
